-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
57 lines (50 loc) · 1.36 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
// web server
const express = require('express')
const app = express()
// express single file server
// let options = {
// root: __dirname+'/public',
// headers: {
// 'x-timestamp': Date.now(),
// 'x-sent' : true
// }
// };
// app.get('/', (req, res) => res.sendFile(
// 'index.html',
// options,
// function(err){ console.log(err); }
// ));
// // app.get('/', (req, res) => res.send('Hello World!'))
// app.listen(3001, () => console.log('Example app listening on port 3000!'))
//var serveStatic = require('serve-static');
// host static files
let options = {
etag : false,
extensions : ['htm', 'html'],
fallthrough : false,
index : 'index.html',
redirect: false
}
app.use( express.static('./', options) );
app.listen( 43210 );
// node http single file server
// console.log("starting server.");
// var http = require('http');
// var fs = require('fs');
// http.createServer(function (req, res) {
// fs.readFile('index.html', function(err, data) {
// if(err) {
// console.log(error);
// throw err;
// }
// res.writeHead(200, {'Content-Type': 'text/html'});
// res.write(data);
// res.end();
// });
// }).listen(8080);
// var http = require('http');
// http.createServer(function (req, res) {
// res.writeHead(200, {'Content-Type': 'text/html'});
// res.write('Hello World!');
// res.end();
// }).listen(8080);