forked from Kinto/formbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devServer.js
33 lines (25 loc) · 824 Bytes
/
devServer.js
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
var path = require("path");
var express = require("express");
var webpack = require("webpack");
var env = "dev", port = 8080;
var webpackConfig = require("./webpack.config." + env);
var compiler = webpack(webpackConfig);
var app = express();
app.use(require("webpack-dev-middleware")(compiler, {
publicPath: webpackConfig.output.publicPath,
noInfo: true
}));
app.use(require("webpack-hot-middleware")(compiler));
app.get("/", function(req, res) {
res.sendFile(path.join(__dirname, "formbuilder", "index.html"));
});
app.get("/react-jsonschema-form.css", function(req, res) {
res.sendFile(path.join(__dirname, "css", "react-jsonschema-form.css"));
});
app.listen(port, "localhost", function(err) {
if (err) {
console.log(err);
return;
}
console.log("Listening at http://localhost:" + port);
});