-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.js
29 lines (28 loc) · 834 Bytes
/
demo.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
// //Pure http server
// const http = require('http');
// const todos = [
// { id: 1, text: 'Todo One' },
// { id: 2, text: 'Todo Two' },
// { id: 3, text: 'Todo Three' },
// ];
// const server = http.createServer((req, res) => {
// res.setHeader('Content-Type', 'application/json');
// res.setHeader('X-powered-By', 'Node.js');
// // res.write('Hello World');
// // res.write('<h1>Hello World</h1>');
// res.writeHead(200, {
// 'Content-Type': 'application/json',
// 'X-powered-By': 'Node.js',
// });
// // const { headers, method, url } = req;
// // console.log(headers, method, url);
// res.end(
// JSON.stringify({
// success: true,
// data: todos,
// })
// );
// });
// server.listen(3000, () => {
// console.log(`Server is running on port http://localhost:3000`);
// });