https://github.com/cinderblock/node-gyp-test
Simple package that can be used as a skeleton or test package for a node-gyp based build
https://github.com/cinderblock/node-gyp-test
Last synced: 2 months ago
JSON representation
Simple package that can be used as a skeleton or test package for a node-gyp based build
- Host: GitHub
- URL: https://github.com/cinderblock/node-gyp-test
- Owner: cinderblock
- Created: 2024-02-28T01:59:48.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-17T18:17:59.000Z (over 1 year ago)
- Last Synced: 2025-03-22T22:36:37.630Z (about 1 year ago)
- Language: Python
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-gyp-test
This is a simple skeleton app that can be used to test if your node-gyp build environment is working.
Alternatively, use this as a starting point for your native module.
[](https://github.com/cinderblock/node-gyp-test/actions/workflows/build-and-run.yaml)
## Usage
```bash
npm install # Install dependencies from Npm: node-gyp, node-addon-api, and bindings
npm run build # Build .node binary for local system
npm --silent start # Tell npm to be quiet and run the test
```
> Should print "Hello, world!" to the console.