Skip to content

Commit 9dc459c

Browse files
committed
first commit
0 parents  commit 9dc459c

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# TextAliYun

package.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "TextAliYun",
3+
"version": "1.0.0",
4+
"main": "index.js",
5+
"repository": "https://github.com/jin-sir/TextAliYun.git",
6+
"license": "MIT"
7+
}

page/index.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<title>Document</title>
8+
</head>
9+
<body>
10+
<div>服务已启动!</div>
11+
</body>
12+
</html>

text.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
var express = require("express");
2+
3+
var app = new express();
4+
app.use(express.static("./page/"));
5+
6+
app.listen(12306, function () {
7+
console.log("服务器已启动")
8+
});

0 commit comments

Comments
 (0)