manga的react版本
使用React实现的WebApp版开源漫画阅读器。实现用户登录注册、提供漫画推荐、漫画搜索、漫画收藏、漫画阅读、历史记录
等功能.另外安卓版的Manga 点击这里
//默认地址为http://localhost:9000
git clone https://github.com/TongmingWu/react-manga.git
cd react-manga
npm install
npm run dev
or
npm run build
├─app /*项目代码*/
│ ├─actions /*redux中的action*/
│ ├─components /*各种组件*/
│ ├─constants /*常量池*/
│ ├─css
│ ├─db /*数据库*/
│ ├─images
│ ├─reducers /*redux中的reducer*/
│ ├─store /*整个应用的store*/
│ └─views /*页面容器*/
├─dist /*编译后的代码*/
│ └─mstatic
│ ├─css
│ └─js
└─public /*模板*/
Copyright (c) 2016 TongmingWu
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.