├── .gitignore ├── .travis.yml ├── LICENSE ├── NativeExtension.cc ├── README.md ├── binding.gyp ├── functions.cc ├── functions.h ├── index.js ├── package.json └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/node-native-boilerplate/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/node-native-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /NativeExtension.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/node-native-boilerplate/HEAD/NativeExtension.cc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/node-native-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/node-native-boilerplate/HEAD/binding.gyp -------------------------------------------------------------------------------- /functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/node-native-boilerplate/HEAD/functions.cc -------------------------------------------------------------------------------- /functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/node-native-boilerplate/HEAD/functions.h -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/node-native-boilerplate/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/node-native-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcanas/node-native-boilerplate/HEAD/test/index.js --------------------------------------------------------------------------------