Skip to content

Commit b1b5726

Browse files
authored
Add files via upload
1 parent 26a88d7 commit b1b5726

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+644
-0
lines changed

Diff for: update_server/index.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const Koa = require('koa')
2+
const app = new Koa()
3+
4+
const static = require('koa-static')
5+
const path = require('path')
6+
7+
app.use(static(path.join(__dirname,'./static')));
8+
9+
app.listen(1002)

Diff for: update_server/package-lock.json

+368
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: update_server/package.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "update_server",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"keywords": [],
10+
"author": "",
11+
"license": "ISC",
12+
"dependencies": {
13+
"koa": "^2.14.1",
14+
"koa-static": "^5.0.0"
15+
}
16+
}

0 commit comments

Comments
 (0)