Package to resolve the node-bindings pattern with the compiled bindings at compile time.
To be used in combo with loaders like native-ext-loader
npm install --save-dev node-bindings-loader
Update rules entry in the Webpack configuration file:
module: {
rules: [{
test: /\.js$/,
loader: "node-bindings-loader"
}];
}
Alessio Paccoia <alessio.paccoia@cubbit.io>