Gathering detailed insights and metrics for react-app-rewire-unplug
Gathering detailed insights and metrics for react-app-rewire-unplug
Gathering detailed insights and metrics for react-app-rewire-unplug
Gathering detailed insights and metrics for react-app-rewire-unplug
A plugin for react-app-rewired to remove unwanted webpack plugins from the react-create-app config.
npm install react-app-rewire-unplug
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
3 Stars
12 Commits
1 Watchers
17 Branches
1 Contributors
Updated on Feb 02, 2021
Latest Version
0.9.0
Package Id
react-app-rewire-unplug@0.9.0
Unpacked Size
4.86 kB
Size
2.24 kB
File Count
4
NPM Version
6.1.0
Node Version
10.4.1
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
A plugin for react-app-rewired
. It removes unwanted webpack plugins from the default react-create-app
configuration.
$ npm install react-app-rewire-unplug --only=dev
Add the following to your config-overrides.js file. See react-app-rewired
for more information regarding this file.
1const removeWebpackPlugins = require ('react-app-rewire-unplug');
The following code removes two webpack plugins from the config. You would put this in the config's override
function.
1 2config = removeWebpackPlugins(config, env, { 3 pluginNames: ['SWPrecacheWebpackPlugin', 'NonExistentPlugin'], 4 verbose: true 5});
What happens here:
SWPrecacheWebpackPlugin
will be removed. Now you could create your own Service Worker.NonExistentPlugin
present in the default CRA config, no other plugins would be removed.verbose
option reports this in a single line to the console.Configure the third parameter of removeWebpackPlugins
as an object with the following optional properties:
pluginNames
(string[]) : a string Array containing any plugins to look for and remove.verbose
(boolean) : report any removed plugins in the console.No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/12 approved changesets -- 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
branch protection not enabled on development/release branches
Details
Reason
82 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