🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

hapi-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hapi-webpack-plugin

Webpack middleware for Hapi. Supports HMR.

latest
Source
npmnpm
Version
3.0.0
Version published
Weekly downloads
308
-6.67%
Maintainers
1
Weekly downloads
 
Created
Source

hapi-webpack-plugin

Maintenance Status Dependency Status NPM version

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
 */
import {Server} from 'hapi';
import Webpack from 'webpack';
import WebpackPlugin from 'hapi-webpack-plugin';

/**
 * Create server
 */
const server = new Server({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
 */
async function start() {
  try {
    await server.register({
      plugin: WebpackPlugin,
      options: {compiler, assets, hot}
    });
  }
  catch (error) {
    console.error(error);
  }
  
  try {
    server.start();
    console.log('Server running at:', server.info.uri)
  }
  catch (error) {
    console.error(error);
  }
}

start();

Hapi <= 16.x

/**
 * 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

Hapi >= 17

/**
 * file: index.js
 */

/**
 * Import dependencies
 */
import {Server} from 'hapi';
import WebpackPlugin from 'hapi-webpack-plugin';


/**
 * Create server
 */
const server = new Server({port: 3000});

/**
 * Register plugin and start server
 */
async function start() {
  try {
    await server.register({
      plugin: WebpackPlugin,
      options: './webpack.config.js'
    });
  }
  catch (error) {
    console.error(error);
  }
  
  try {
    server.start();
    console.log('Server running at:', server.info.uri)
  }
  catch (error) {
    console.error(error);
  }
}

start();

Hapi <= 16.x

/**
 * 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: {}
};

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.

Keywords

hapi

FAQs

Package last updated on 29 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts