JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 13074
  • Score
    100M100P100Q136527F
  • License MIT

Automatically start your server once Webpack's build completes.

Package Exports

  • start-server-webpack-plugin

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (start-server-webpack-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

start-server-webpack-plugin

Automatically start your server once Webpack's build completes.

travis build version downloads MIT License

Installation

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

Usage

In webpack.config.server.babel.js:

import StartServerPlugin from "start-server-webpack-plugin";

export default {
  // This script will be ran after building
  entry: {
    server: ...
  },
  ...
  plugins: [
    ...
    // Only use this in DEVELOPMENT
    new StartServerPlugin('server.js'),
    ...
  ],
  ...
}

The name argument in new StartServerPlugin(name) 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.

License

MIT License 2016 © Eric Clemmons