-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
61 lines (61 loc) · 1.71 KB
/
server.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
59
60
61
// const express = require('express');
// const webpack = require('webpack');
// const webpackDevMiddleware = require('webpack-dev-middleware');
//
// const app = express();
// const config = require('./webpack.dev.js');
// const common = require('./webpack.common.js');
// const compiler = webpack(config);
// const path = require('path');
// // app.use('/index', router);
// // Tell express to use the webpack-dev-middleware and use the webpack.config.js
// // configuration file as a base.
// // app.use(webpackDevMiddleware(compiler, {
// // publicPath: common.output.publicPath
// // }));
// // webpack-dev-server中间件
// var devMiddleware = webpackDevMiddleware(compiler, {
// publicPath: common.output.publicPath,
// stats: {
// colors: true,
// chunks: false
// }
// });
// app.use(devMiddleware)
//
// // 路由
// app.get('/:viewname?', function(req, res, next) {
//
// console.log(req, "req=============")
// var viewname = req.params.viewname ?
// req.params.viewname + '.html' :
// 'index.html';
//
// var filepath = path.join(compiler.outputPath, viewname);
//
// // 使用webpack提供的outputFileSystem
// compiler.outputFileSystem.readFile(filepath, function(err, result) {
// if (err) {
// // something error
// return next(err);
// }
// res.set('content-type', 'text/html');
// res.send(result);
// res.end();
// });
// });
//
// module.exports = app.listen(3000, function(err) {
// if (err) {
// // do something
// return;
// }
//
// console.log('Listening at http://localhost:3000\n')
// })
//
// // Serve the files on port 3000.
//
// // app.listen(3000, function() {
// // console.log('Example app listening on port 3000!\n');
// // });