Webpack middleware for Hapi. Supports HMR.
Please download the appropriate version for you.
- For webpack 1.x use version <= 1.3.0 of this package.
- For webpack 2.x use version >= 2.0.0 of this package.
npm install hapi-webpack-pluginSee webpack-dev-middleware and webpack-hot-middleware for all available options.
You can use the plugin in two ways.
1) With object as options
/**
* file: index.js
*/
/**
* Import dependencies
*/
import {Server} from 'hapi';
import Webpack from 'webpack';
import WebpackPlugin from 'hapi-webpack-plugin';
/**
* Create server
*/
const server = new Server();
server.connection({port: 3000});
/**
* Define constants
*/
const compiler = new Webpack({
// 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.register({
register: WebpackPlugin,
options: {compiler, assets, hot}
},
error => {
if (error) {
return console.error(error);
}
server.start(() => console.log('Server running at:', server.info.uri));
});2) With path as options
/**
* file: index.js
*/
/**
* Import dependencies
*/
import {Server} from 'hapi';
import WebpackPlugin from 'hapi-webpack-plugin';
/**
* Create server
*/
const server = new Server();
server.connection({port: 3000});
/**
* Register plugin and start server
*/
server.register({
register: WebpackPlugin,
options: './webpack.config.js'
},
error => {
if (error) {
return console.error(error);
}
server.start(() => console.log('Server running at:', server.info.uri));
});/**
* file: webpack.config.js
*/
/**
* Export webpack configuration
*/
export default {
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: {}
};Virtual Hosts Binding
Hapi allows plugins to be bound to virtual hosts via the routes.vhost
option of server.register().
As of version 2.0.1 this plugin supports binding a unqiue webpack configuration
to a specific virtual host. Further, multiple instances of the plugin can be
registered simultaneously allowing for multiple unique webpack configurations to be running
for different virtual hosts on a single server.
/**
* file: index-vhost.js
*/
/**
* Import dependencies
*/
import {Server} from 'hapi';
import WebpackPlugin from 'hapi-webpack-plugin';
/**
* Create server
*/
const server = new Server();
server.connection({port: 3000});
/**
* Register muliple plugin instances, one for each webpack/vhost combination, and start server
*/
server.register([
{
register: WebpackPlugin,
options: './webpack.client.config.js',
routes:
{
vhosts: 'client.mydomain.com'
}
},
{
register: WebpackPlugin,
options: './webpack.admin.config.js',
routes:
{
vhosts: 'admin.mydomain.com'
}
}],
error => {
if (error) {
return console.error(error);
}
server.start(() => console.log('Server running at:', server.info.uri));
});/**
* file: webpack.client.config.js
*/
/**
* Export webpack configuration for client
*/
export default {
entry: 'client_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: {}
};
/**
* file: webpack.admin.config.js
*/
/**
* Export webpack configuration for admin
*/
export default {
entry: 'admin_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: {}
};The MIT License (MIT)
Copyright (c) 2017 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.