File tree 4 files changed +28
-0
lines changed
4 files changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ # TextAliYun
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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
+ } ) ;
You can’t perform that action at this time.
0 commit comments