npm.io
0.2.0 • Published 10 years ago

autohost-webpack-hot

Licence
MIT
Version
0.2.0
Deps
5
Vulns
1
Weekly
0

autohost-webpack-hot

This is a very simple plugin for autohost to wire up webpack (and babel supported) hot-reloading.

Usage

Install

npm install autohost-webpack-hot --save
Integrate with Autohost
var autohost = require( "autohost" );
var fount = require( "fount" );

var webpackConfig = require( "./webpack.config.js" );
var webpackCompiler = require( "webback" )( webpackConfig );

// Any settings to pass to webpack-dev-server
webpackCompiler._middlewareConfig = {
    stats: {
        colors: true
    }
};

fount.register( "webpackCompiler", webpackCompiler );

var host = autohost( {
    modules: [ "autohost-webpack-hot" ]
} );

host.start();

Follow the rest of the example from react-transform-boilerplate - This autohost plugin will just handle serving the files. The following two files are included for reference.

Tests

Single Run
npm test
Continuous Run with Coverage
gulp

Notes

  • Be sure to setup the .babelrc correctly to reference the react transform plugins.

License

MIT

Keywords