1.0.0 • Published 5 years ago

node-loader-ext v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

Node ext Loader

Package for loading native files in Node and Electron applications.

Installation

Add the package to the development dependencies:

# using npm:
$ npm install node-loader-ext --save-dev

# using yarn:
$ yarn add --dev node-loader-ext

Usage

Update rules entry in the Webpack configuration file:

module: {
  rules: [
    {
      test: /\.node$/,
      loader: "node-loader-ext"
    }
  ];
}