├── .gitignore ├── LICENSE ├── README.md ├── example ├── binding.c ├── binding.gyp ├── example.js └── package.json ├── index.js ├── package.json ├── parse.js ├── require.js ├── string.js └── test ├── compile.js └── parse.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | sandbox.js 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/shared-structs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/shared-structs/HEAD/README.md -------------------------------------------------------------------------------- /example/binding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/shared-structs/HEAD/example/binding.c -------------------------------------------------------------------------------- /example/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/shared-structs/HEAD/example/binding.gyp -------------------------------------------------------------------------------- /example/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/shared-structs/HEAD/example/example.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/shared-structs/HEAD/example/package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/shared-structs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/shared-structs/HEAD/package.json -------------------------------------------------------------------------------- /parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/shared-structs/HEAD/parse.js -------------------------------------------------------------------------------- /require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/shared-structs/HEAD/require.js -------------------------------------------------------------------------------- /string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/shared-structs/HEAD/string.js -------------------------------------------------------------------------------- /test/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/shared-structs/HEAD/test/compile.js -------------------------------------------------------------------------------- /test/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/shared-structs/HEAD/test/parse.js --------------------------------------------------------------------------------