Lazy dev server for webpack
npm install webpack-lazy-dev-serverWebpack server which allow compile entries on demand.

```
npm install webpack-lazy-dev-server
`jshttp://localhost:${PORT}
const webpackServer = require('webpack-lazy-dev-server');
const PORT = 4000;
webpackServer.createServer({
packsDirectory: 'packs', // directory where are you entries for webpack
host: , // url which are using for download compiled entriespacksDirectory
config: webpackConfig, // you standart webpack config
acceptFile: filepath => true, // function for filtering entries in Run http://localhost:${PORT}
code: '', // custom code which you can inline for non-compiling entries
configure: entryList => {} // access to entryList and custom manipuration on it
}).then(app => {
app.listen(PORT, () => console.log())`
})
All entries will be available according you webpack config
> {host}/{publicPath}/{entryname}
in our example it can be
> http://localhost:4000/public/entry.js
if we have file packs/entry.js and in webpack config you define output.publicPath as public.
Also there is admin panel for precompiled entries. It will be available on http://localhost:4000/admin`.