https://github.com/imsobear/weekly
weekly weekly
https://github.com/imsobear/weekly
Last synced: 3 months ago
JSON representation
weekly weekly
- Host: GitHub
- URL: https://github.com/imsobear/weekly
- Owner: imsobear
- Created: 2015-04-06T05:48:56.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-06T10:57:05.000Z (about 10 years ago)
- Last Synced: 2025-01-22T20:51:30.159Z (5 months ago)
- Language: JavaScript
- Size: 145 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# koa-init
---------
## Dependent
```
"koa": "~0.14.0",
"koa-bodyparser": "~1.3.0",
"koa-logger": "~1.2.2",
"koa-mount": "~1.3.0",
"koa-router": "~3.8.0",
"koa-static": "~1.4.8",
"lodash": "~2.4.1",
"log4js": "~0.6.21",
"xtemplate": "~4.1.3",
"xtpl": "~3.1.9"
```## Test
```
npm test
```## Run in local
```
npm start
```## Deploy
```
npm run deploy
```## Tree
```
├── README.md
├── app.js // 程序入口文件
├── makefile // 构建脚本
├── package.json
├── routes.js // 路由
├── config.js // 配置
├── common
│ ├── helper.js // 通用方法
│ ├── middleware.js // 中间件
│ └── xtemplate.js // xtpl helpers
├── controller
│ └── common.js
├── test // 测试文件夹
└── view // 视图
```