Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 750 Bytes

readme.md

File metadata and controls

27 lines (18 loc) · 750 Bytes

Example Async Node C++ Addon

Allows for non-blocking C++ operations from Node.js using the callback pattern.

Lightweight example.

Tested in Node.js v4.4.2 LTS on Ubuntu Linux.

Usage

Clone this git repo and navigate to the project directory. Follow the commands below:

$ npm install -g node-gyp
$ cd async-addon
$ node-gyp configure
$ node-gyp build
$ cd ..
$ node index.js

Credits

Thanks to Scott Frees' C++ processing from Node.js - Part 4 - Asynchronous addons article for a lot of help.

Contribution

Submit a pull-request and I'd be more than happy to include it. C++ isn't my strong point so I can imagine there's room to improve.