Code Monkey home page Code Monkey logo

webpack-server-dev's Introduction

Webpack server development plugin

Easily develop nodejs server app

When developing nodejs backend server, server-dev-webpack-plugin can help you to auto restart the server when code changes are detected. It's just like webpack-dev-server, but for the nodejs backend server development.

Quick usage

npm install server-dev-webpack-plugin --save-dev

In your webpack.config.js:

var ServerDevPlugin = require('server-dev-webpack-plugin');

...

watch: true,
plugins: [
  new ServerDevPlugin()
]

And that's it. This webpack plugin would be work with watch option.

When you run npm run dev, your code would be watched and your server would run automatically.

Detailed overview

Description

This plugin actually auto starts the webpack output entry as a server. And keep listening to the emit event of compiler. If the output chunks change is detected, the plugin would restart the server.

Configuration

This plugin accepts an options object.

options.starter

If there are more than one entries, options.starter would determine which entry file would be used to start the server. If it's empty, server-dev-webpack-plugin would run the first entry as default.

Contribute

Contributions and pull requests are welcome. Please run the tests to make sure nothing breaks.

License

MIT

webpack-server-dev's People

Contributors

walkthunder avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.