使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
登录
binhong
/
Breakups
镜像自地址
https://github.com/binhonglee/Breakups
关注
1
点赞
0
派生
0
代码
工单
0
版本发布
0
百科
动态
浏览代码
test
Fixing-CORS-crash
BinHong Lee
7 年前
父节点
aa7a798e4e
当前提交
8f3b98ce2a
共有
2 个文件被更改
,包括
8 次插入
和
1 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+6
-0
index.js
+2
-1
package.json
+ 6
- 0
index.js
查看文件
@@ -0,0 +1,6 @@
var http = require('http')
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'})
response.end('Breakup\n')
}).listen(process.env.PORT)
+ 2
- 1
package.json
查看文件
@@ -4,7 +4,8 @@
"description": "",
"main": "index.js",
"scripts": {
"test": "test"
"test": "test",
"start": "node index.js"
},
"author": "",
"license": "MIT"
撰写
预览
正在加载...
取消
保存