https://github.com/dbtek/react-manga
A web application to discover and read mangas, built on React & Redux.
https://github.com/dbtek/react-manga
Last synced: about 2 months ago
JSON representation
A web application to discover and read mangas, built on React & Redux.
- Host: GitHub
- URL: https://github.com/dbtek/react-manga
- Owner: dbtek
- Created: 2016-08-05T12:11:14.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-05T13:17:26.000Z (almost 10 years ago)
- Last Synced: 2025-12-26T20:57:34.292Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 496 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
RManga
------
Simple app built on React with Redux consuming Mangaeden api. Based on [React Starter](https://github.com/eanplatter/react-starter#getting-started)
## Technology
- React (UI)
- Redux (Data Flow)
- React Router
- Fetch Api (HTTP Requests)
- Material UI (Prebuilt React components following Material Design spec)
- Sass (With node-sass, Webpack Sass loader)
- Webpack with Babel (Script bundling with ES6/7 transpile)
- Mocha, Expect.js (Test suite for UI components)
## Installation
Node 4+, NPM 3+ is highly recommended.
```
$ npm install
```
## Build & Run
```
$ npm start
```
Go to [localhost:8080](http://localhost:8080).
## Get Production Ready
Bundle for production is created under `/dist` directory with:
```
$ npm run build
```
## Tests
Unit tests can be run with:
```
$ npm test
```