@azu/sjsp-loader
v0.1.0
Published
node-sjsp module loader for webpack
Downloads
9
Readme
node-sjsp loader for webpack
THIS IS FORK VERSION
This package allows injecting some codes for profiling your JavaScript files using node-sjsp and webpack.
Install
npm install @azu/sjsp-loader --save-dev
Usage
Within your webpack configuration object, you'll need to add the sjsp-loader to the list of modules, like so:
var path = require('path');
module.exports = {
entry: {
'app': './app.js'
},
output: {
filename: '[name].bundle.js'
},
module: {
loaders: [
{
test: /(\.js)$/,
loader: 'sjsp?interval=10',
exclude: [
path.resolve(__dirname, 'node_modules')
]
}
]
}
};
- You can
exclude
vendor modules by adding the directory paths of them as profiling targets.
Options
See the node-sjsp usage.
interval
Interval time of logging the result in seconds (default 10)
License
MIT (http://www.opensource.org/licenses/mit-license.php)