We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cadb6d commit 2eaedd0Copy full SHA for 2eaedd0
Test/a.js
@@ -0,0 +1,5 @@
1
+function pow()
2
+{
3
+
4
5
+}
Test/server.js
@@ -0,0 +1,15 @@
+var http = require('http');
+http.createServer(function (request, response) {
+ // 发送 HTTP 头部
6
+ // HTTP 状态值: 200 : OK
7
+ // 内容类型: text/plain
8
+ response.writeHead(200, {'Content-Type': 'text/plain'});
9
10
+ // 发送响应数据 "Hello World"
11
+ response.end('Hello World\n');
12
+}).listen(8888);
13
14
+// 终端打印如下信息
15
+console.log('Server running at http://127.0.0.1:8888/');
0 commit comments