https://github.com/agjs/cpp-nan
Repository for learning NaN (V8 abstraction library) and building native node modules
https://github.com/agjs/cpp-nan
nodejs v8 v8-javascript-engine
Last synced: 30 days ago
JSON representation
Repository for learning NaN (V8 abstraction library) and building native node modules
- Host: GitHub
- URL: https://github.com/agjs/cpp-nan
- Owner: agjs
- Created: 2018-08-29T14:32:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-30T08:03:20.000Z (over 7 years ago)
- Last Synced: 2025-04-03T12:52:03.487Z (about 1 year ago)
- Topics: nodejs, v8, v8-javascript-engine
- Language: Python
- Size: 1.12 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C++ with NaN
This repository has been created for the sake of creating native node modules with NaN. I will
share all my learnings in hear.
# Resources
I will extend the list of resources as I keep learning new stuff. If you have any yourself that you believe are worth listing, please do a pull request.
- [Node API on Addons](https://nodejs.org/api/addons.html)
- [V8 Embedded Guide](https://github.com/v8/v8/wiki/Embedder's-Guide)
- [Node Native Extentions Boilerplate](https://github.com/fcanas/node-native-boilerplate)
- [Node Addons Example](https://github.com/nodejs/node-addon-examples)
- [Nan Documentation](https://github.com/nodejs/nan#readme)
- [Nodeschool Going Native](https://nodeschool.io/#goingnative)