node-addon-loader icon indicating copy to clipboard operation
node-addon-loader copied to clipboard

A loader for node native addons

Results 4 node-addon-loader issues
Sort by recently updated
recently updated
newest added

Module build failed (from ./node_modules/node-addon-loader/index.js): TypeError: Cannot read property 'nodeAddonLoader' of undefined

In the Readme, the option should be 'path.resolve' instead of just resolve(__dirname....

Hi, attempted plugin on latest webpack 4.12.0. Config: ``` module: { rules: [ { test: /\.node$/, use: { loader: "node-addon-loader", options: {} } } ] } ``` Failing with ```...

I'm currently using `node-addon-loader` to attempt to pull in a C++ node addon into our electron application decrediton. It is currently working while using a hot-loaded dev environment and when...