Gathering detailed insights and metrics for webpack-notifier
Gathering detailed insights and metrics for webpack-notifier
Gathering detailed insights and metrics for webpack-notifier
Gathering detailed insights and metrics for webpack-notifier
webpack-build-notifier
A Webpack plugin that generates OS notifications for build steps using node-notifier.
fork-ts-checker-notifier-webpack-plugin
a notifier for users of fork-ts-checker-webpack-plugin
update-notifier-webpack
Update notifications for your CLI app
es-webpack-notifier
webpack + node-notifier = build status system notifications, Add support for Multi-compiler mode
webpack + node-notifier = build status system notifications
npm install webpack-notifier
Typescript
Module System
Node Version
NPM Version
TypeScript (53.34%)
JavaScript (46.66%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
ISC License
307 Stars
222 Commits
41 Forks
6 Watchers
3 Branches
19 Contributors
Updated on Mar 05, 2025
Latest Version
1.15.0
Package Id
webpack-notifier@1.15.0
Unpacked Size
20.68 kB
Size
10.55 kB
File Count
7
NPM Version
6.14.15
Node Version
14.18.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
This is a webpack plugin that uses the node-notifier package to display build status system notifications to the user.
This is a fork of the webpack-error-notification plugin. It adds support for Windows and there is no need to manually install the
terminal-notifier
package on OS X anymore.
The plugin will notify you about the first run (success/fail), all failed runs and the first successful run after recovering from a build failure. In other words: it will stay silent if everything is fine with your build.
Use npm
to install this package:
npm install --save-dev webpack-notifier
Check the node-notifier
Requirements
whether you need to install any additional tools for your OS.
In the webpack.config.js
file:
1var WebpackNotifierPlugin = require('webpack-notifier'); 2 3var config = module.exports = { 4 // ... 5 6 plugins: [ 7 new WebpackNotifierPlugin(), 8 ] 9}
Title shown in the notification.
1new WebpackNotifierPlugin({title: 'Webpack'});
1new WebpackNotifierPlugin({title: function (params) { 2 return `Build status is ${params.status} with message ${params.message}`; 3}});
Show status emoji icon before the message.
1new WebpackNotifierPlugin({emoji: true});
Image shown in the notification. Can be a path string or object with paths.
1var path = require('path');
2
3new WebpackNotifierPlugin({contentImage: path.join(__dirname, 'logo.png')});
1var path = require('path'); 2 3const statusesPaths = { 4 success: path.join(__dirname, 'success.png'), 5 warning: path.join(__dirname, 'warning.png'), 6 error: path.join(__dirname, 'error.png') 7} 8 9new WebpackNotifierPlugin({contentImage: statusesPaths});
If set to true
, warnings will not cause a notification.
1new WebpackNotifierPlugin({excludeWarnings: true});
Trigger a notification every time. Call it "noisy-mode".
1new WebpackNotifierPlugin({alwaysNotify: true});
Trigger a notification only on error.
1new WebpackNotifierPlugin({onlyOnError: true});
Do not notify on the first build. This allows you to receive notifications on subsequent incremental builds without being notified on the initial build.
1new WebpackNotifierPlugin({skipFirstNotification: true});
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 2/15 approved changesets -- score normalized to 1
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
43 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More