- Download and install npm package
 
#NPM
npm install webpack-report
#YARN
yarn add webpack-reportconst WebpackReport = require('webpack-report');
module.exports = {
  plugins: [
    new WebpackReport()
  ]
}- describe your project informations like dependency, dev-dependency etc.
 - show webpack build informations like warnings, error, build time etc.
 - detailed Assets, Modules and chunks informations with interactive graphs.
 
  new WebpackReport(options)| Name | Type | Default | Description | 
|---|---|---|---|
host | 
string | localhost | webpack-report server host name | 
port | 
number | 1237 | webpack-report server run at this port | 
open | 
boolean | true | open report in default browser | 
statsOptions | 
object | options passed in stats.toJson() method. | 
|
packageJsonPath | 
string | project package.json custom file path | 
- 
clone repository
 - 
install dependency
 
  npm install- go to example folder and install dependency too
 
  npm install- start the dev server using
 
  npm startdev server will start
MIT




