├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── binding.gyp ├── hello.cc ├── hello.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagivo/nodejs-addons/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagivo/nodejs-addons/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagivo/nodejs-addons/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagivo/nodejs-addons/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagivo/nodejs-addons/HEAD/binding.gyp -------------------------------------------------------------------------------- /hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagivo/nodejs-addons/HEAD/hello.cc -------------------------------------------------------------------------------- /hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagivo/nodejs-addons/HEAD/hello.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagivo/nodejs-addons/HEAD/package.json --------------------------------------------------------------------------------