forked from react-csv/react-csv
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.js
More file actions
34 lines (28 loc) · 870 Bytes
/
Copy pathserver.js
File metadata and controls
34 lines (28 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
var express = require("express");
var webpack = require("webpack");
var merge = require("lodash/merge");
var config = merge({}, require("./webpack.sample.config"));
config.devtool = "cheap-module-eval-source-map";
config.entry.unshift("webpack-hot-middleware/client");
config.plugins.push(
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
);
var app = express();
var compiler = webpack(config);
app.use(
require("webpack-dev-middleware")(compiler, {
noInfo: true,
publicPath: config.output.publicPath,
})
);
app.use(require("webpack-hot-middleware")(compiler));
app.use(express.static("sample-site"));
app.listen(8008, "localhost", function(err) {
if (err) {
console.log(err);
return;
}
console.log(`...running 🏃🏿 🏃🏻 `);
console.log("🌏 Listening at http://localhost:8008 👏 👏 👌 ");
});