Gathering detailed insights and metrics for fork-ts-checker-notifier-webpack-plugin
Gathering detailed insights and metrics for fork-ts-checker-notifier-webpack-plugin
Gathering detailed insights and metrics for fork-ts-checker-notifier-webpack-plugin
Gathering detailed insights and metrics for fork-ts-checker-notifier-webpack-plugin
npm install fork-ts-checker-notifier-webpack-plugin
Typescript
Module System
Min. Node Version
Node Version
NPM Version
79.9
Supply Chain
25.1
Quality
73.9
Maintenance
100
Vulnerability
97.9
License
TypeScript (82%)
JavaScript (9.71%)
Dockerfile (8.29%)
Total Downloads
8,504,335
Last Day
679
Last Week
62,211
Last Month
198,933
Last Year
1,735,790
MIT License
54 Stars
76 Commits
13 Forks
3 Watchers
8 Branches
15 Contributors
Updated on Mar 11, 2025
Minified
Minified + Gzipped
Latest Version
9.0.0
Package Id
fork-ts-checker-notifier-webpack-plugin@9.0.0
Unpacked Size
19.41 kB
Size
8.70 kB
File Count
13
NPM Version
8.19.4
Node Version
16.20.2
Published on
Dec 19, 2023
Cumulative downloads
Total Downloads
Last Day
39.7%
679
Compared to previous day
Last Week
35.8%
62,211
Compared to previous week
Last Month
4.5%
198,933
Compared to previous month
Last Year
5.6%
1,735,790
Compared to previous year
This is a webpack plugin that uses the node-notifier package to display build status system notifications to the user. It's purpose is to work with the fork-ts-checker-webpack-plugin. This deliberately has a similar API as the excellent webpack-notifier plugin. If you are not using fork-ts-checker-webpack-plugin and you want system notifications then you probably want webpack-notifier.
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.
This plugin requires minimum fork-ts-checker-webpack-plugin@6, webpack 4, see fork-ts-checker-webpack-plugin for minimum requirements.
Use yarn
to install packages:
yarn add --dev fork-ts-checker-webpack-plugin fork-ts-checker-notifier-webpack-plugin
Alternatively, use npm
:
npm install --save-dev fork-ts-checker-webpack-plugin fork-ts-checker-notifier-webpack-plugin
In the webpack.config.js
file:
1var ForkTsCheckerNotifierWebpackPlugin = require('fork-ts-checker-notifier-webpack-plugin'); 2var ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); 3 4var config = module.exports = { 5 /** 6 * Plugin order is important. 7 * A wrong order will cause some hooks to be undefined 8 * and the build to fail 9 */ 10 plugins: [ 11 new ForkTsCheckerWebpackPlugin(), 12 new ForkTsCheckerNotifierWebpackPlugin({ excludeWarnings: true }), 13 ] 14},
Title prefix shown in the notifications.
1new ForkTsCheckerNotifierWebpackPlugin({ title: 'Webpack' });
If set to true
, warnings will not cause a notification.
1new ForkTsCheckerNotifierWebpackPlugin({ excludeWarnings: true });
Trigger a notification every time. Call it "noisy-mode".
1new ForkTsCheckerNotifierWebpackPlugin({ alwaysNotify: 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 ForkTsCheckerNotifierWebpackPlugin({ skipFirstNotification: true });
Skip notifications for successful builds.
1new ForkTsCheckerNotifierWebpackPlugin({ skipSuccessful: true });
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 9/18 approved changesets -- score normalized to 5
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
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
branch protection not enabled on development/release branches
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
12 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-23
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