-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevServer.js
More file actions
57 lines (44 loc) · 1.3 KB
/
Copy pathdevServer.js
File metadata and controls
57 lines (44 loc) · 1.3 KB
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
var path = require('path');
var express = require('express');
var webpack = require('webpack');
var config = require('./webpack.config.dev');
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.get('/', function(req, res) {
res.sendFile(path.join(__dirname, 'index.html'));
});
app.get('/index.html', function(req, res) {
res.sendFile(path.join(__dirname, 'index.html'));
});
app.get('/styles.css', function(req, res) {
res.sendFile(path.join(__dirname, 'styles.css'));
});
var bookmarksFile = 'bookmarks-sample.json';
if(process.argv.length > 2) {
bookmarksFile = process.argv[2];
console.log('Reading file', bookmarksFile);
}
app.get('/bookmarks.json', function(req, res) {
// Its an absolute path
if(path.normalize(bookmarksFile) === path.resolve(bookmarksFile)) {
res.sendFile(bookmarksFile);
}
else {
res.sendFile(path.join(__dirname, bookmarksFile));
}
});
app.get('/favicon.ico', function(req, res) {
res.sendFile(path.join(__dirname, '/favicon.ico'));
});
app.listen(3000, 'localhost', function(err) {
if (err) {
console.log(err);
return;
}
console.log('Listening at http://localhost:3000');
});