1.2.0 • Published 6 years ago

webpack-dev-runner v1.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

webpack-dev-runner

Command line tool which takes a webpack configuration, watches for code changes, and automatically (re)builds and (re)starts your service bundle.

Usage

webpack-dev-runner --config <config-file> [options]
webpack-dev-runner --version
webpack-dev-runner --help
OptionsTypeDescription
--configstringPath to the webpack configuration file.
--delaynumberDelay (re)starting the bundle process by a specified number of milliseconds after it was built.
--dev,booleanForce development environment, i.e.: NODE_ENV = 'development'.
--namestringProcess name to display in console output. When omitted, the display name will be generated from the configuration file name, by removing redundant parts like webpack, config, js, etc. If all parts are redundant, default is used.
--colors, --colorbooleanEnable usage of colors on the console.
--display-error-detailsbooleanDisplay details about errors.
-h, --helpbooleanShow help.
-v, --versionbooleanShow version number.

How it works

webpack-dev-runner is a simple script that takes a webpack configuration and makes use of the webpack Node API to watch for code changes.

Then it makes use of the Node Cluster API to run the built bundle as a separate process. Process lifetime is controlled using cluster.setupMaster(), cluster.fork() and worker.kill() (using the default SIGTERM signal). Whenever a new bundle is built, the previous process is killed and replaced by a new one running the new bundle.

Despite its simplicity, this is very useful in development as it allows you to keep an “always up to date” version of your server side script running, similar to what can be achieved with webpack-dev-server for the client-side.

Limitations

Please keep in mind that webpack-dev-runner is not able to:

  • Achieve real hot reloading, in the sense of preserving internal state of the previous running process.

    • To be fair, this would not be possible anyway, as it would require access to the internals of a running node process — a clear security vulnerability.
    • As a workaround, you can write internal state that should be kept to a separate file (or, even better, to a database).
  • Run only in memory, like in webpack-dev-middleware or webpack-dev-server.

    • This limitation comes from how memory-fs works, by keeping the file in a data object, which is of course not accessible to cluster.fork().
    • I'm currently playing with the idea of moving the result from memory-fs to a temporary file before actually running it. This would at least have a the benefit of leaving your build/dist folder untouched. Expect some news about this at some point in the future.

Disclaimer

Despite its name, webpack-dev-runner is not part of the webpack project or any of its sub-projects, or affiliated with it in any manner. The choice of name was motivated solely on being descriptive for what it does, and follows the trend set by so many other projects in the ecosystem that name themselves after the tools they use internally. This package is published in good faith with the goal of sharing with the community. If you feel that webpack-dev-runner is misrepresenting your project or causing harm in any way, please let me know and I will be happy to change its name or this description on request.