webpack-logger-plugin

1.2.0 • Public • Published

Webpack Logger Plugin

JavaScript Style Guide dependencies Status npm

What you get:

With readable error output:

Introduction

When using Webpack the default output during compilation is generally not all that helpful. This plugin draws from a few other plugins out there to give you progress output and a clean terminal.

Why not use nyan-progress-webpack-plugin? For a simple reason, this plugin aims to simplify terminal output and progress bars with webpack are not all that helpful since the total number of modules being bundled is not known on startup, meaning your progress bar keeps adjusting down as build continues. Instead, we use a spinner along with react-dev-utils' helpful message formatting.

TL;DR

This package is for Webpack users who have large projects created before they could benefit from create-react-app.

Install

$ npm i -D webpack-logger-plugin

Usage

Add to your webpack config:

const WebpackLoggerPlugin = require('webpack-logger-plugin')
 
const config = {
    entry: '...',
    output: {...},
    modules: {...},
    plugins: [
        new WebpackLoggerPlugin()
    ]
}

And add this to your webpack-dev-server config:

const server = new webpackDevServer(compiler, {
    quiet: true,
    // If using proxy add logLevel: 'silent'
    proxy: {
        '/api': {
            ...
            logLevel: 'silent'
        }
    }
})

Package Sidebar

Install

npm i webpack-logger-plugin

Weekly Downloads

91

Version

1.2.0

License

MIT

Last publish

Collaborators

  • michaelgilley