https://github.com/amercier/react-redux-tutorial
Tutorial Hacker News application with React and Redux
https://github.com/amercier/react-redux-tutorial
hackernews react redux tutorial
Last synced: 12 months ago
JSON representation
Tutorial Hacker News application with React and Redux
- Host: GitHub
- URL: https://github.com/amercier/react-redux-tutorial
- Owner: amercier
- License: isc
- Created: 2018-12-25T10:47:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-29T04:36:42.000Z (almost 6 years ago)
- Last Synced: 2025-02-15T13:18:29.362Z (about 1 year ago)
- Topics: hackernews, react, redux, tutorial
- Language: JavaScript
- Homepage: https://www.robinwieruch.de/react-redux-tutorial/
- Size: 1.96 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# React Redux Tutorial
> Hacker News application with React and Redux, built by following
> [React Redux Tutorial for Beginners (2018)].
[](https://travis-ci.org/amercier/react-redux-tutorial)
[](https://codecov.io/github/amercier/react-redux-tutorial?branch=master)
[](https://david-dm.org/amercier/react-redux-tutorial)
[](https://david-dm.org/amercier/react-redux-tutorial#info=devDependencies)
[](https://github.com/amercier/react-redux-tutorial/issues?q=label%3Agreenkeeper)
## Getting started
This application was bootstrapped with [Create React App].
### Dependencies
Before starting, install [NodeJS] and [Yarn].
```bash
yarn
```
Installs this project's dependencies in the `node_modules` folder.
### Development
```bash
yarn start
```
Runs the app in the development mode.
Open to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
### Testing
```bash
yarn test
```
Launches the test runner in the interactive watch mode.
See the section about [running tests] for more information.
### Building
```bash
yarn build
```
Builds the app for production to the `build` folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about [deployment] for more information.
### Continuous Delivery
[](https://react-redux-tutorial.amercier.com/)
Each successful build on the `master` branch is automatically deployed by Travis CI on
[GitHub Pages]. See [GitHub Pages Deployment] for more information.
**Note:**: `GITHUB_TOKEN` and `CNAME` environment variables must be set in Travis CI project
settings.
## License
[](LICENSE.md)
[react redux tutorial for beginners (2018)]: https://www.robinwieruch.de/react-redux-tutorial/
[create react app]: https://github.com/facebook/create-react-app
[nodejs]: https://nodejs.org/
[yarn]: https://yarnpkg.com/
[running tests]: https://facebook.github.io/create-react-app/docs/running-tests
[deployment]: https://facebook.github.io/create-react-app/docs/deployment
[github pages]: https://pages.github.com/
[github pages deployment]: https://docs.travis-ci.com/user/deployment/pages/