Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkaefer/node-cpp-modules
Guide for writing C++ node.js extensions
https://github.com/kkaefer/node-cpp-modules
Last synced: 1 day ago
JSON representation
Guide for writing C++ node.js extensions
- Host: GitHub
- URL: https://github.com/kkaefer/node-cpp-modules
- Owner: kkaefer
- Created: 2011-09-24T18:06:20.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-09-07T07:56:47.000Z (over 11 years ago)
- Last Synced: 2024-07-31T22:41:20.334Z (7 months ago)
- Language: C++
- Homepage: http://kkaefer.github.com/node-cpp-modules/
- Size: 102 KB
- Stars: 669
- Watchers: 30
- Forks: 129
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to write node.js modules using C++
This is a tutorial for writing [node.js](http://nodejs.org/) modules in C++. It is the base and reference for my talk on writing node.js modules with V8 at [JSConf 2011 in Berlin](http://jsconf.eu/2011).
Further references:
* [V8 Doxygen](http://izs.me/v8-docs/main.html)
* [uv.h](https://github.com/joyent/libuv/blob/master/include/uv.h)
* [An introduction to libuv](http://nikhilm.github.com/uvbook/)
* [v8 Cookbook](http://create.tpsitulsa.com/wiki/V8_Cookbook)
* [Google's C++ style guide](http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml)