Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

webpack-write-stats-plugin

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webpack-write-stats-plugin

Webpack plugin that writes the stats information to a defined file on build completion.

  • 0.0.1
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

webpack-write-stats-plugin

Webpack plugin that writes the stats information to a defined file on build completion

Installing

$ npm install webpack-write-stats-plugin

Using

In your webpack config file:

webpack.config.json

const path = require('path');
const WebpackWriteStatsPlugin = require('webpack-write-stats-plugin');

module.exports = { // your configuration
  entry: [ ... ],
  loaders: [ ... ],
  plugins: [
    new WebpackWriteStatsPlugin(path.resolve(__dirname, 'webpack-stats.json')),
  ]
};

Configuration

WebpackWriteStatsPlugin takes 2 parameters:

new WebpackWriteStatsPlugin(fileLocation, [statsConfiguation={}])

  • fileLocation (path): File path to write the stats to. Default webpack.json.
  • statsConfiguration (object): Configuration to send to stats. Default is {}. For more information, visit: https://webpack.js.org/configuration/stats/#stats

Run tests

To run the tests, written in jest:

npm run test

Keywords

FAQs

Package last updated on 16 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc