-
Notifications
You must be signed in to change notification settings - Fork 0
/
visualpython.js
96 lines (84 loc) · 2.22 KB
/
visualpython.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/** back up - working well */
// var http = require('http');
// var fs = require('fs');
// const path = require("path");
// var app = http.createServer(function(req, res){
// var url = req.url;
// if(url == '/'){
// url = '/index.html';
// }
// if(url == '/favicon.ico'){
// res.writeHead(404);
// res.end();
// return;
// }
// res.writeHead(200);
// res.end(fs.readFileSync(__dirname + url));
// });
// app.listen(3000);
/** test 1 */
// const http = require('http');
// const fs = require('fs');
// const path = require("path");
// const static = require('serve-static');
// // server name and port setting
// const hostname = '127.0.0.1';
// const port = 3000;
// // allowed extensions
// const mimeType = {
// ".ico": "image/x-icon",
// // ".html": "text/html",
// // ".js": "text/javascript",
// // ".css": "text/css",
// ".png": "image/png",
// ".jpg": "image/jpeg",
// ".eot": "aplication/vnd.ms-fontobject",
// ".ttf": "aplication/font-sfnt",
// }
// // create server
// const app = http.createServer((req, res) => {
// var url = req.url;
// const ext = path.parse(url).ext
// console.log(__dirname, ' + ', url);
// if (url == '/'){
// url = '/index.html';
// }
// if (url == '/favicon.ico'){
// res.writeHead(404);
// res.end();
// return;
// }
// res.writeHead(200);
// // check allowed extensions
// if (Object.keys(mimeType).includes(ext)) {
// res.setHeader('Content-Type', mimeType[ext]);
// }
// // set respond data
// res.end(fs.readFileSync(__dirname + url));
// });
// // listen for request
// app.listen(port, hostname, () => {
// console.log(`Server running at http://${hostname}:${port}/`);
// });
/** test 2 - express
* npm install express
*/
const express = require('express');
const app = express();
const static = require('serve-static');
const path = require('path');
// server name and port setting
const hostname = '127.0.0.1';
const port = 3000;
// create static folder with its root folder
app.use(static(__dirname));
app.get('/', (req, res, next) => {
res.sendFile(__dirname + '/index.html');
});
app.get('/favicon.ico', (req, res, next) => {
res.writeHead(404);
res.end();
});
app.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});