https://github.com/joe3ray/blog
personal blog
https://github.com/joe3ray/blog
Last synced: 9 months ago
JSON representation
personal blog
- Host: GitHub
- URL: https://github.com/joe3ray/blog
- Owner: Joe3Ray
- License: mit
- Created: 2017-07-23T07:22:47.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-19T16:05:43.000Z (over 7 years ago)
- Last Synced: 2025-02-05T10:50:43.648Z (over 1 year ago)
- Language: JavaScript
- Size: 216 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-koa-app
> 基于 React 和 Koa2 的项目
## 初始化
clone 项目模板到本地,删除目录中的`.git`目录
```sh
git clone https://github.com/Joe3Ray/react-koa-app.git my-project
cd my-project && rm -rf .git
```
## 环境依赖
- node 8+ LTS
- npm 5+
## 本地开发
```sh
npm i
npm start
```
## 常用命令
JS 代码风格检查
```sh
npm run lint
```
单元测试
```sh
npm test
```