https://github.com/dlyt/daoxila
https://github.com/dlyt/daoxila
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dlyt/daoxila
- Owner: dlyt
- Created: 2017-09-25T01:49:10.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-02T08:02:15.000Z (over 8 years ago)
- Last Synced: 2025-03-11T07:48:32.433Z (over 1 year ago)
- Language: JavaScript
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### 搭建Koa服务器
#### node版本
V8.0.0
#### 目录结构
```
.
├── bin
│ └── server.js # 启动文件,引入 babel 和文件`server.js`。
├── src # 程序源文件
│ └── client # 前端文件夹
│ ├── index.html # 页面
│ └── index.js # 渲染DOM
├── .babelrc # babel配置文件
└── index.js # 程序入口文件
```