https://github.com/hansenwangvip/react-kanban-app
A TodoList like Trello.
https://github.com/hansenwangvip/react-kanban-app
react redux webpack
Last synced: 3 months ago
JSON representation
A TodoList like Trello.
- Host: GitHub
- URL: https://github.com/hansenwangvip/react-kanban-app
- Owner: hansenwangvip
- Created: 2017-06-29T03:42:20.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-11T09:48:19.000Z (almost 9 years ago)
- Last Synced: 2025-01-11T23:43:31.812Z (over 1 year ago)
- Topics: react, redux, webpack
- Language: CSS
- Homepage:
- Size: 1.83 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

## 介绍
这是一个React看板APP,分为三个列表,功能类似于Trello。
## 技术栈
使用到的技术栈:
1. React@15
2. React-Router@1
3. SCSS
4. webpack@3
## 项目目录
react-kanban-app
├── README.md
├── package.json
├── webpack.config.js
├── .gitignore
├── **public**
│ └── favicon.ico
│ └── index.html
│ └── bundle.js <-------------------------output
│ └── style.scss
└── **src**
│ └── **scss**
│ └── **components**
│ └── **routes**
│ └── **consts**
│ └── App.scss
│ └── App.js
│ └── index.js <-------------------------entry
│ └── logo.svg
## 工具&插件
请查看package.json文件。
## 使用
1. 克隆到本地
```terminal
git clone https://github.com/jasonwithjs/React-Kanban-App.git
```
2. 本地启动
- 使用yarn:
```terminal
yarn install
yarn start
```
- 使用npm:
```terminal
npm install
npm start
```
在浏览器中打开**[http://localhost:8080](http://localhost:8080)**。
3. 本地打包:
```terminal
yarn build
```