hapi-webpack-plugin
Webpack middleware for Hapi. Supports HMR.
Webpack Version
Please download the appropriate version for you.
Hapi >= 17.x
- For webpack >= 2.x use version >= 3.0.0 of this package.
Hapi <= 16.x
- For webpack 1.x use version < 1.3.0 of this package.
- For webpack 2.x use version 2.x.x of this package.
Installation
npm install hapi-webpack-plugin
Usage
See webpack-dev-middleware and webpack-hot-middleware for all available options.
You can use the plugin in two ways.
1) With object as options
Hapi >= 17.x
/** * file: index.js */ /** * Import dependencies */;;; /** * Create server */const server = port: 3000; /** * Define constants */const compiler = // webpack configuration entry: 'app.js'; const assets = // webpack-dev-middleware options // See https://github.com/webpack/webpack-dev-middleware const hot = // webpack-hot-middleware options // See https://github.com/glenjamin/webpack-hot-middleware /** * Register plugin and start server */ { try await server; catch error console; try serverstart; console catch error console; } ;
Hapi <= 16.x
/** * file: index.js */ /** * Import dependencies */;;; /** * Create server */const server = ;server; /** * Define constants */const compiler = // webpack configuration entry: 'app.js'; const assets = // webpack-dev-middleware options // See https://github.com/webpack/webpack-dev-middleware const hot = // webpack-hot-middleware options // See https://github.com/glenjamin/webpack-hot-middleware /** * Register plugin and start server */server;
2) With path as options
Hapi >= 17
/** * file: index.js */ /** * Import dependencies */;; /** * Create server */const server = port: 3000; /** * Register plugin and start server */ { try await server; catch error console; try serverstart; console catch error console; } ;
Hapi <= 16.x
/** * file: index.js */ /** * Import dependencies */;; /** * Create server */const server = ;server; /** * Register plugin and start server */server;
/** * file: webpack.config.js */ /** * Export webpack configuration */ entry: 'app.js' // webpack-dev-middleware options // See https://github.com/webpack/webpack-dev-middleware assets: {} // webpack-hot-middleware options // See https://github.com/glenjamin/webpack-hot-middleware hot: {};
Licence
The MIT License (MIT)
Copyright (c) 2015 Simon Degraeve
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.