@azu/sjsp-loader

0.1.0 • Public • Published

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

using loaders

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)

Package Sidebar

Install

npm i @azu/sjsp-loader

Weekly Downloads

1

Version

0.1.0

License

MIT

Last publish

Collaborators

  • azu