You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

npm-check-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

npm-check-webpack-plugin

Uses the [`npm-check`](https://github.com/dylang/npm-check) library to check for missing dependencies before running a webpack build. By default, if it finds any missing or outdated dependencies it will automatically run `npm install` before continuing wi

1.0.0
npm
Version published
Weekly downloads
11
-45%
Maintainers
1
Weekly downloads
 
Created
Source

npm-check-webpack-plugin

Uses the npm-check library to check for missing dependencies before running a webpack build. By default, if it finds any missing or outdated dependencies it will automatically run npm install before continuing with the build.

Installation

npm install npm-check-webpack-plugin

Usage

In webpack.config.js (or whatever file you have your webpack config in):

var NpmCheckPlugin = require('npm-check-webpack-plugin');
/* ES6:
   import NpmCheckPlugin from 'npm-check-webpack-plugin';
 */

module.exports =
  { //... webpack config
    plugins:
      [ new NpmCheckPlugin(/* { autoInstall: [false|true*] silent: [false*|true] }*/)
      ]
  };

FAQs

Package last updated on 18 Sep 2015

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