An open API service indexing awesome lists of open source software.

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

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/)