├── .npmignore ├── LICENSE.txt ├── README.md ├── generate.sh ├── package.json ├── src ├── flatbuffers.js ├── index.js ├── reflection.fbs └── reflection_generated.js └── tests ├── example.bfbs ├── example.fbs ├── example.json ├── example_input.example ├── example_input.json ├── example_output.json ├── test.js ├── unicode.bfbs ├── unicode.fbs └── unicode.json /.npmignore: -------------------------------------------------------------------------------- 1 | /generate.sh 2 | /src/reflection.fbs 3 | /tests 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/README.md -------------------------------------------------------------------------------- /generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/generate.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/package.json -------------------------------------------------------------------------------- /src/flatbuffers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/src/flatbuffers.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reflection.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/src/reflection.fbs -------------------------------------------------------------------------------- /src/reflection_generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/src/reflection_generated.js -------------------------------------------------------------------------------- /tests/example.bfbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/tests/example.bfbs -------------------------------------------------------------------------------- /tests/example.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/tests/example.fbs -------------------------------------------------------------------------------- /tests/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/tests/example.json -------------------------------------------------------------------------------- /tests/example_input.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/tests/example_input.example -------------------------------------------------------------------------------- /tests/example_input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/tests/example_input.json -------------------------------------------------------------------------------- /tests/example_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/tests/example_output.json -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/tests/test.js -------------------------------------------------------------------------------- /tests/unicode.bfbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/tests/unicode.bfbs -------------------------------------------------------------------------------- /tests/unicode.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/tests/unicode.fbs -------------------------------------------------------------------------------- /tests/unicode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/node-flatbuffers/HEAD/tests/unicode.json --------------------------------------------------------------------------------