-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevServer.js
58 lines (48 loc) · 2.02 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
var env = process.env.NODE_ENV || 'dev';
var path = require('path');
var express = require('express');
var favicon = require('serve-favicon');
var webpack = require('webpack');
var config = require('./webpack.config.dev');
var app = express();
app.use(express.static('dist'));
app.use(favicon(path.join(__dirname, 'dist', 'favicon.ico')));
app.set('port', process.env.PORT || 8080);
if (env === 'dev') {
require('colors');
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.get('*', function(req, res) {
res.sendFile(path.join(__dirname, 'index.html'));
});
var server = app.listen(app.get('port'), function(err) {
if (err) {
console.log(err);
return;
}
if (env === 'dev') {
console.log(' _______________________'.magenta);
console.log('()===( (@===()'.magenta);
console.log(' \'______________________\'|'.magenta);
console.log(' | |'.magenta);
console.log(' | Timo Plato |'.magenta);
console.log(' | is |'.magenta);
console.log(' | now |'.magenta);
console.log(' | running! |'.magenta);
console.log(' | |'.magenta);
console.log(' | |'.magenta);
console.log(' | love, |'.magenta);
console.log(' | Joanne |'.magenta);
console.log(' _)_____________________|'.magenta);
console.log('()===( (@===()'.magenta);
console.log(' \'----------------------\''.magenta);
console.log(' '.magenta);
console.log('Check out the app at http://localhost:' + server.address().port);
console.log('Press Ctrl+C to stop.');
}
});