Package Exports
- @constgen/neutrino-node-loader
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@constgen/neutrino-node-loader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@constgen/neutrino-node-loader
Neutrino middleware for loading native *.node
modules
Requirements
- Node.js v10+
- Neutrino v9
- Webpack v4
Installation
@constgen/neutrino-node-loader
can be installed from NPM. You should install it to "dependencies"
(--save) or "devDependncies"
(--save-dev) depending on your goal.
npm install --save @constgen/neutrino-node-loader
Usage
In preset
Require this package and plug it into Neutrino. The middleware has no options:
let nodeLoader = require('@constgen/neutrino-node-loader')
neutrino.use(nodeLoader())
In neutrinorc
The middleware also may be used together with another presets in Neutrino rc-file, e.g.:
.neutrinorc.js
let nodeLoader = require('@constgen/neutrino-node-loader')
module.exports = {
use: [
nodeLoader()
]
}