-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
31 lines (26 loc) · 983 Bytes
/
server.js
File metadata and controls
31 lines (26 loc) · 983 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
/**
* Created by sinires on 18.07.16.
*/
var webpack = require('webpack')
var webpackDevMiddleware = require('webpack-dev-middleware')
//вызывает обновления модулей приложения
var webpackHotMiddleware = require('webpack-hot-middleware')
var config = require('./webpack.config.js')
var app = new (require('express'))();
var port = 3000;
var serveStatic = require('serve-static');
const path = require('path');
var compiler = webpack(config)
app.use(webpackDevMiddleware(compiler, {noInfo: true, publicPath: config.output.publicPath}));
app.use(webpackHotMiddleware(compiler));
app.use("/public", serveStatic(path.join(__dirname, '/img')));
app.get("/map", function (req, res) {
res.sendFile(__dirname + '/index.html')
})
app.listen(port, function (error) {
if (error) {
console.error(error)
} else {
console.info("==> 🌎 Listening on port %s. Open up http://localhost:%s/ in your browser.", port, port)
}
})