https://github.com/joe3ray/react-koa-app
create app with react and koa
https://github.com/joe3ray/react-koa-app
koa react
Last synced: about 1 month ago
JSON representation
create app with react and koa
- Host: GitHub
- URL: https://github.com/joe3ray/react-koa-app
- Owner: Joe3Ray
- License: mit
- Created: 2017-07-23T06:42:01.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-17T04:10:14.000Z (over 6 years ago)
- Last Synced: 2025-02-05T10:50:45.632Z (3 months ago)
- Topics: koa, react
- Language: JavaScript
- Size: 162 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
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
```