https://github.com/hisasann/node-native-addon-using-node-gyp
node native addon using node gyp
https://github.com/hisasann/node-native-addon-using-node-gyp
node-gyp nodejs
Last synced: about 2 months ago
JSON representation
node native addon using node gyp
- Host: GitHub
- URL: https://github.com/hisasann/node-native-addon-using-node-gyp
- Owner: hisasann
- Created: 2017-02-15T11:03:53.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T05:21:06.000Z (over 2 years ago)
- Last Synced: 2025-02-17T08:28:29.321Z (over 1 year ago)
- Topics: node-gyp, nodejs
- Language: C++
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-gyp を使った native addon の作り方
[nodejs/node-gyp: Node.js native addon build tool](https://github.com/nodejs/node-gyp)
## Installation
```
$ npm i
```
**.gyp** ファイルがあると `npm i` で自動的に node-gyp が実行される。
## Build
```
$ npm run build
```
or
```
$ npm run rebuild
```
## Test
```
$ npm run test
```