-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
42 lines (41 loc) · 862 Bytes
/
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
const http = require('http');
http.createServer((request, response) => {
let body = [];
request.on('error', (err) => {
console.error(err)
}).on('data', (chunk) => {
body.push(chunk.toString());
}).on('end', () => {
body = body.join('');
console.log('body:', body);
response.writeHead(200, {'Content-Type': 'text/html'});
response.end(
`<html maaa=a >
<head>
<style>
#container {
width: 500px;
height: 300px;
display:flex;
background-color:rgb(255,255,255);
}
#container #myid {
width: 200px;
height: 100px;
background-color:rgb(255,0,0);
}
#container .c1 {
flex:1;
background-color:rgb(0,255,0);
}
</style>
</head>
<body>
<div id="container">
<div id="myid"/>
<div class="c1" />
</div>
</body>
</html>`);
});
}).listen(8088)