https://github.com/alessiopcc/node-bindings-loader
https://github.com/alessiopcc/node-bindings-loader
webpack
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alessiopcc/node-bindings-loader
- Owner: alessiopcc
- License: mit
- Created: 2019-01-10T14:12:18.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-06T09:45:55.000Z (about 5 years ago)
- Last Synced: 2024-12-04T03:19:45.049Z (over 1 year ago)
- Topics: webpack
- Language: JavaScript
- Size: 17.6 KB
- Stars: 2
- Watchers: 1
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Node-bindings-loader module
Package to resolve the [node-bindings](https://github.com/TooTallNate/node-bindings) pattern with the compiled bindings at compile time.
To be used in combo with loaders like [native-ext-loader](https://github.com/smt116/node-native-ext-loader)
## Installation
```sh
npm install --save-dev node-bindings-loader
```
## Usage
Update rules entry in the Webpack configuration file:
```javascript
module: {
rules: [{
test: /\.js$/,
loader: "node-bindings-loader"
}];
}
```
## License
[MIT](https://github.com/alessiopcc/node-bindings-loader/blob/master/LICENSE)
## Author
Alessio Paccoia <>