Gathering detailed insights and metrics for razzle-start-server-webpack-plugin
Gathering detailed insights and metrics for razzle-start-server-webpack-plugin
Gathering detailed insights and metrics for razzle-start-server-webpack-plugin
Gathering detailed insights and metrics for razzle-start-server-webpack-plugin
@fabio-arsenal/razzle-start-server-webpack-plugin
Automatically start your server once Webpack's build completes.
@elzzad/dazzle-start-server-webpack-plugin
Dazzle (formerly Razzle) is a plugin based configuration utility to create server-rendered universal JavaScript applications with no configuration
✨ Create server-rendered universal JavaScript applications with no configuration
npm install razzle-start-server-webpack-plugin
Typescript
Module System
Node Version
NPM Version
razzle-plugin-svelte@4.2.18
Updated on Oct 25, 2022
razzle-plugin-graphql@4.2.18
Updated on Oct 25, 2022
razzle-start-server-webpack-plugin@4.2.18
Updated on Oct 25, 2022
razzle-plugin-bundle-analyzer@4.2.18
Updated on Oct 25, 2022
razzle-plugin-vue@4.2.18
Updated on Oct 25, 2022
razzle-plugin-css@4.2.18
Updated on Oct 25, 2022
JavaScript (98.98%)
CSS (1.01%)
Shell (0.02%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
11,093 Stars
1,988 Commits
861 Forks
115 Watchers
29 Branches
170 Contributors
Updated on Jul 04, 2025
Latest Version
4.2.18
Package Id
razzle-start-server-webpack-plugin@4.2.18
Unpacked Size
19.75 kB
Size
6.72 kB
File Count
7
NPM Version
6.14.16
Node Version
12.22.12
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
1
Automatically start your server once Webpack's build completes + handle hot reloading (HMR)
1$ npm install --save-dev start-server-webpack-plugin
In webpack.config.server.babel.js
:
1import StartServerPlugin from "start-server-webpack-plugin"; 2 3export default { 4 ... 5 plugins: [ 6 ... 7 // Only use this in DEVELOPMENT 8 new StartServerPlugin({ 9 // print server logs 10 verbose: true, 11 // print plugin/server errors 12 debug: false, 13 // name of the entry to run, defaults to 'main' 14 entryName: 'server', 15 // any arguments to nodejs when running the entry, this one allows debugging 16 nodeArgs: ['--inspect-brk'], 17 // any arguments to pass to the script 18 scriptArgs: ['scriptArgument1', 'scriptArgument2'], 19 // Allow typing 'rs' to restart the server. default: only if NODE_ENV is 'development' 20 restartable: true | false, 21 // Only run the server once (default: false) 22 once: false | true, 23 }), 24 ... 25 ], 26 ... 27}
The entryName
argument defaults to "main"
, which is the name Webpack uses if you use the string or array versions of the entry
option.
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" and "watch" modes.
This plugin appends some code to the end of the entry so that it can handle HMR and restarts; no need to add any of the webpack/hot
modules.
name
option and define entryName
if it's not just "main"
MIT License 2016-2018 © Eric Clemmons
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 6/13 approved changesets -- score normalized to 4
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
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
148 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