Gathering detailed insights and metrics for start-server-webpack-plugin-2
Gathering detailed insights and metrics for start-server-webpack-plugin-2
Gathering detailed insights and metrics for start-server-webpack-plugin-2
Gathering detailed insights and metrics for start-server-webpack-plugin-2
Automatically start your server once Webpack's build completes.
npm install start-server-webpack-plugin-2
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
59 Commits
1 Watchers
5 Branches
1 Contributors
Updated on Feb 23, 2023
Latest Version
2.1.3
Package Id
start-server-webpack-plugin-2@2.1.3
Unpacked Size
24.23 kB
Size
7.20 kB
File Count
8
NPM Version
9.4.1
Node Version
16.15.1
Published on
May 24, 2023
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 internal package. If you're looking for something similar, check out run-script-webpack-plugin.
Automatically run your script once Webpack's build completes.
NOTE: mostly copied from this repo, but strongly typed from scratch
1npm i -D start-server-webpack-plugin-2
In webpack.config.ts
:
1import { StartServerWebpackPlugin } from "start-server-webpack-plugin-2"; 2 3export default { 4 plugins: [ 5 ... 6 // Only use this in DEVELOPMENT 7 new StartServerWebpackPlugin({ 8 name: 'server.js', 9 nodeArgs: ['--inspect'], // allow debugging 10 args: ['scriptArgument1', 'scriptArgument2'], // pass args to script 11 autoRestart: true | false, // Should the script auto-restart after emit. Defaults to true. This should be set to false if using HMR 12 signal: false | true | 'SIGUSR2', // signal to send for HMR (defaults to `false`, uses 'SIGUSR2' if `true`) 13 keyboard: true | false, // Allow typing 'rs' to restart the server. default: only if NODE_ENV is 'development' 14 cwd: undefined | string, // set a current working directory for the child process default: current cwd 15 }), 16 ], 17}
The name
argument in StartServerWebpackPluginOptions
refers to the built asset, which is named by the output options of webpack (in the example the entry server
becomes server.js
. This way, the plugin knows which entry to start in case there are several.
If you don't pass a name, the plugin will tell you the available names.
You can use nodeArgs
and args
to pass arguments to node and your script, respectively. For example, you can use this to use the node debugger.
To use Hot Module Reloading with your server code, set Webpack to "hot" mode and include the webpack/hot/poll
or webpack/hot/signal
modules. Make sure they are part of your server bundle, e.g. if you are using node-externals
put them in your whitelist. The latter module requires the signal
option.
Refer to LICENSE file
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
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
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