New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

webpack-obnoxious-progress-plugin

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webpack-obnoxious-progress-plugin

An unnecessarily obnoxious progress bar plugin for Webpack

latest
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

webpack-obnoxious-progress-plugin

An unnecessarily obnoxious progress bar plugin for Webpack

Available on npm here

Setup

To install:

yarn add --dev webpack-obnoxious-progress-plugin

or

npm i webpack-obnoxious-progress-plugin --save-dev

Add to your Webpack config:

Production build

const ObnoxiousProgressBarPlugin = require('webpack-obnoxious-progress-plugin');

module.exports = {
  plugins: [
    new ObnoxiousProgressBarPlugin(),
  ],
};

Development

const ObnoxiousProgressBarPlugin = require('webpack-obnoxious-progress-plugin');

const DEV_SERVER_PORT = 8000;
const MODE = 'development';

module.exports = {
  mode: MODE,
  devServer: {
    ...
    port: DEV_SERVER_PORT,
  },
  plugins: [
    new ObnoxiousProgressBarPlugin({
      mode: MODE,
      serverPort: DEV_SERVER_PORT,
    }),
  ],
};

Now you too can have an obnoxious webpack loader ( ಠ ͜ʖ ಠ)

FAQs

Package last updated on 21 Feb 2019

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