A webpack plugin that runs child_process.spawn within compilation
npm install webpack-spawn-plugin

 
A webpack plugin that runs child_process.spawn within compilation.
$ npm install --save-dev webpack-spawn-plugin
``js
import SpawnPlugin from 'webpack-spawn-plugin'
const config = {
...
plugins: [
new SpawnPlugin('node', ['.'], options)
]
}
`
> when (default: "done")
The Webpack compiler hook
during which the process will be spawned.
> stdio (default: "inherit")
The output stream to which stdout and stderr will be sent.
> persistent (default: false)
Indicates whether the spawned process should be replaced
every time the hook is called.
Note: You can pass more options to process.spawn in the options` objects.
MIT © Diego Haz