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

webpack-notifier

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webpack-notifier

webpack + node-notifier = build status system notifications

  • 1.7.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
887K
increased by78.87%
Maintainers
1
Weekly downloads
 
Created

What is webpack-notifier?

The webpack-notifier package is a plugin for Webpack that displays build status system notifications to inform developers about the success or failure of their builds. It helps in providing immediate feedback without needing to check the terminal.

What are webpack-notifier's main functionalities?

Basic Notification

This feature allows you to set up basic notifications for your Webpack builds. When the build process completes, a notification will appear indicating whether the build was successful or if there were errors.

const WebpackNotifierPlugin = require('webpack-notifier');

module.exports = {
  // other webpack configuration settings
  plugins: [
    new WebpackNotifierPlugin()
  ]
};

Custom Notification Title

This feature allows you to customize the title of the notification. This can be useful if you are working on multiple projects and want to easily identify which project the notification is for.

const WebpackNotifierPlugin = require('webpack-notifier');

module.exports = {
  // other webpack configuration settings
  plugins: [
    new WebpackNotifierPlugin({ title: 'My Project' })
  ]
};

Exclude Warnings

This feature allows you to exclude warnings from the notifications. This can be useful if you only want to be notified about errors and not warnings.

const WebpackNotifierPlugin = require('webpack-notifier');

module.exports = {
  // other webpack configuration settings
  plugins: [
    new WebpackNotifierPlugin({ excludeWarnings: true })
  ]
};

Always Notify

This feature ensures that you always receive a notification, even if the build is successful. This can be useful if you want to be notified every time a build completes, regardless of the outcome.

const WebpackNotifierPlugin = require('webpack-notifier');

module.exports = {
  // other webpack configuration settings
  plugins: [
    new WebpackNotifierPlugin({ alwaysNotify: true })
  ]
};

Other packages similar to webpack-notifier

Keywords

FAQs

Package last updated on 10 Oct 2018

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