https://github.com/nicknaso/seed-node-native-module
Seed to create native module for Node.js
https://github.com/nicknaso/seed-node-native-module
node-native nodejs seed
Last synced: 8 months ago
JSON representation
Seed to create native module for Node.js
- Host: GitHub
- URL: https://github.com/nicknaso/seed-node-native-module
- Owner: NickNaso
- License: apache-2.0
- Created: 2016-08-20T20:20:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-02T06:26:53.000Z (over 8 years ago)
- Last Synced: 2025-03-25T05:54:16.707Z (10 months ago)
- Topics: node-native, nodejs, seed
- Language: JavaScript
- Homepage: http://www.nacios.it
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Seed to build Node.js native module
This repository is a starting point to build a native Node.js module.
## Installation
* Clone the repository:
```
git clone https://github.com/NickNaso/seed-node-native-module.git
```
* Install all requested dependencies
```
npm install
```
Now you can start in using this base code to build your own native module. All
information about developing Node.js native module are available below as reference.
### Reference:
[Official Node.js documentation](https://nodejs.org/docs/latest/api/addons.html)
[Native Abstraction for Node.js](https://github.com/nodejs/nan)
[Official Node.js examples](https://github.com/nodejs/node-addon-examples)
[The V8 Getting started guide](https://developers.google.com/v8/get_started)
[The V8 Embedders guide](https://developers.google.com/v8/embed)
[The V8 API documentation](https://v8docs.nodesource.com/)