Use webpack with a development server that provides live reloading. This should be used for development only.
It uses webpack-dev-middleware under the hood, which provides fast in-memory access to the webpack assets.
First things first, install the module:
npm install webpack-dev-server --save-dev
Note: While you can install and run webpack-dev-server globally, we recommend installing it locally. webpack-dev-server will always use a local installation over a global one.
There are two main, recommended methods of using the module:
The easiest way to use it is with the webpack CLI. In the directory where your
webpack.config.js
is, run:
npx webpack serve
Following options are available with webpack serve
:
Usage: webpack serve|server|s [entries...] [options]
Options:
-c, --config <value...> Provide path to a webpack configuration file e.g. ./webpack.config.js.
--config-name <value...> Name of the configuration to use.
-m, --merge Merge two or more configurations using 'webpack-merge'.
--env <value...> Environment passed to the configuration when it is a function.
--node-env <value> Sets process.env.NODE_ENV to the specified value.
--progress [value] Print compilation progress during build.
-j, --json [value] Prints result as JSON or store it in a file.
-d, --devtool <value> Determine source maps to use.
--no-devtool Do not generate source maps.
--entry <value...> The entry point(s) of your application e.g. ./src/main.js.
--mode <value> Defines the mode to pass to webpack.
--name <value> Name of the configuration. Used when loading multiple configurations.
-o, --output-path <value> Output location of the file generated by webpack e.g. ./dist/.
--stats [value] It instructs webpack on how to treat the stats e.g. verbose.
--no-stats Disable stats output.
-t, --target <value...> Sets the build target e.g. node.
--no-target Negative 'target' option.
--watch-options-stdin Stop watching when stdin stream has ended.
--no-watch-options-stdin Do not stop watching when stdin stream has ended.
--allowed-hosts <value...> Allows to enumerate the hosts from which access to the dev server are allowed (useful when you are proxying dev
server, by default is 'auto'). https://webpack.js.org/configuration/dev-server/#devserverallowedhosts
--allowed-hosts-reset Clear all items provided in configuration. Allows to enumerate the hosts from which access to the dev server are
allowed (useful when you are proxying dev server, by default is 'auto').
https://webpack.js.org/configuration/dev-server/#devserverallowedhosts
--bonjour Allows to broadcasts dev server via ZeroConf networking on start.
https://webpack.js.org/configuration/dev-server/#devserverbonjour
--no-bonjour Negative 'bonjour' option.
--client-hot-entry Injects a Hot Module Replacement entry.
--no-client-hot-entry Negative 'client-hot-entry' option.
--client-logging <value> Allows to specify options for client script in the browser.
https://webpack.js.org/configuration/dev-server/#devserverclient
--client-need-client-entry Inject a client entry.
--no-client-need-client-entry Negative 'client-need-client-entry' option.
--client-overlay Enables a full-screen overlay in the browser when there are compiler errors or warnings.
--no-client-overlay Negative 'client-overlay' option.
--client-overlay-errors Enables a full-screen overlay in the browser when there are compiler errors.
--no-client-overlay-errors Negative 'client-overlay-errors' option.
--client-overlay-warnings Enables a full-screen overlay in the browser when there are compiler warnings.
--no-client-overlay-warnings Negative 'client-overlay-warnings' option.
--client-progress Prints compilation progress in percentage in the browser.
--no-client-progress Negative 'client-progress' option.
--client-transport <value> Allows to set custom transport to communicate with dev server.
--client-web-socket-url <value> Allows to specify URL to web socket server (useful when you're proxying dev server and client script does not
always know where to connect to).
--client-web-socket-url-host <value> Tells clients connected to devServer to use the provided host.
--client-web-socket-url-path <value> Tells clients connected to devServer to use the provided path to connect.
--client-web-socket-url-port <value> Tells clients connected to devServer to use the provided port.
--client-web-socket-url-protocol <value> Tells clients connected to devServer to use the provided protocol.
--compress Enables gzip compression for everything served. https://webpack.js.org/configuration/dev-server/#devservercompress
--no-compress Negative 'compress' option.
--history-api-fallback Allows to proxy requests through a specified index page (by default 'index.html'), useful for Single Page
Applications that utilise the HTML5 History API.
https://webpack.js.org/configuration/dev-server/#devserverhistoryapifallback
--no-history-api-fallback Negative 'history-api-fallback' option.
--host <value> Allows to specify a hostname to use. https://webpack.js.org/configuration/dev-server/#devserverhost
--hot [value] Enables Hot Module Replacement. https://webpack.js.org/configuration/dev-server/#devserverhot
--no-hot Negative 'hot' option.
--http2 Allows to serve over HTTP/2 using SPDY. https://webpack.js.org/configuration/dev-server/#devserverhttp2
--no-http2 Negative 'http2' option.
--https Allows to configure the server's listening socket for TLS (by default, dev server will be served over HTTP).
https://webpack.js.org/configuration/dev-server/#devserverhttps
--no-https Negative 'https' option.
--https-passphrase <value> Passphrase for a pfx file.
--https-request-cert Request for an SSL certificate.
--no-https-request-cert Negative 'https-request-cert' option.
--https-cacert <value> Path to an SSL CA certificate.
--https-key <value> Path to an SSL key.
--https-pfx <value> Path to an SSL pfx file.
--https-cert <value> Path to an SSL certificate.
--live-reload Enables reload/refresh the page(s) when file changes are detected (enabled by default).
https://webpack.js.org/configuration/dev-server/#devserverlivereload
--no-live-reload Negative 'live-reload' option.
--open [value...] Allows to configure dev server to open the browser(s) and page(s) after server had been started (set it to true to
open your default browser). https://webpack.js.org/configuration/dev-server/#devserveropen
--no-open Negative 'open' option.
--open-target [value...] Opens specified page in browser.
--no-open-target Negative 'open-target' option.
--open-app-name <value...> Open specified browser.
--open-app <value...> Open specified browser.
--open-reset Clear all items provided in configuration. Allows to configure dev server to open the browser(s) and page(s) after
server had been started (set it to true to open your default browser).
https://webpack.js.org/configuration/dev-server/#devserveropen
--open-target-reset Clear all items provided in configuration. Opens specified page in browser.
--open-app-name-reset Clear all items provided in configuration. Open specified browser.
--port <value> Allows to specify a port to use. https://webpack.js.org/configuration/dev-server/#devserverport
--static [value...] Allows to configure options for serving static files from directory (by default 'public' directory).
https://webpack.js.org/configuration/dev-server/#devserverstatic
--no-static Negative 'static' option.
--static-directory <value...> Directory for static contents.
--static-public-path <value...> The static files will be available in the browser under this public path.
--static-serve-index Tells dev server to use serveIndex middleware when enabled.
--no-static-serve-index Negative 'static-serve-index' option.
--static-watch Watches for files in static content directory.
--no-static-watch Negative 'static-watch' option.
--static-reset Clear all items provided in configuration. Allows to configure options for serving static files from directory (by
default 'public' directory). https://webpack.js.org/configuration/dev-server/#devserverstatic
--static-public-path-reset Clear all items provided in configuration. The static files will be available in the browser under this public
path.
--watch-files <value...> Allows to configure list of globs/directories/files to watch for file changes.
https://webpack.js.org/configuration/dev-server/#devserverwatchfiles
--watch-files-reset Clear all items provided in configuration. Allows to configure list of globs/directories/files to watch for file
changes. https://webpack.js.org/configuration/dev-server/#devserverwatchfiles
--web-socket-server <value> Allows to set web socket server and options (by default 'ws').
https://webpack.js.org/configuration/dev-server/#devserverwebsocketserver
Global options:
--color Enable colors on console.
--no-color Disable colors on console.
-v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and commands.
-h, --help [verbose] Display help for commands and options.
Note: For more information on above options explore this link.
NPM package.json scripts are a convenient and useful means to run locally installed binaries without having to be concerned about their full paths. Simply define a script as such:
{
"scripts": {
"serve": "webpack serve"
}
}
And run the following in your terminal/console:
npm run serve
NPM will automagically reference the binary in node_modules
for you, and
execute the file or command.
Either method will start a server instance and begin listening for connections
from localhost
on port 8080
.
webpack-dev-server is configured by default to support live-reload of files as you edit your assets while the server is running.
See the documentation for more use cases and options.
While webpack-dev-server
transpiles the client (browser) scripts to an ES5
state, the project only officially supports the last two versions of major
browsers. We simply don't have the resources to support every whacky
browser out there.
If you find a bug with an obscure / old browser, we would actively welcome a Pull Request to resolve the bug.
We do our best to keep Issues in the repository focused on bugs, features, and needed modifications to the code for the module. Because of that, we ask users with general support, "how-to", or "why isn't this working" questions to try one of the other support channels that are available.
Your first-stop-shop for support for webpack-dev-server should be the excellent documentation for the module. If you see an opportunity for improvement of those docs, please head over to the webpack.js.org repo and open a pull request.
From there, we encourage users to visit the webpack Gitter chat and
talk to the fine folks there. If your quest for answers comes up dry in chat,
head over to StackOverflow and do a quick search or open a new
question. Remember; It's always much easier to answer questions that include your
webpack.config.js
and relevant files!
If you're twitter-savvy you can tweet #webpack with your question and someone should be able to reach out and lend a hand.
If you have discovered a 🐛, have a feature suggestion, or would like to see a modification, please feel free to create an issue on Github. Note: The issue template isn't optional, so please be sure not to remove it, and please fill it out completely.
We welcome your contributions! Please have a read of CONTRIBUTING.md for more information on how to get involved.
This project is heavily inspired by peerigon/nof5.