An open API service indexing awesome lists of open source software.

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

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)].

[![Build Status](https://img.shields.io/travis/amercier/react-redux-tutorial/master.svg)](https://travis-ci.org/amercier/react-redux-tutorial)
[![Test Coverage](https://img.shields.io/codecov/c/github/amercier/react-redux-tutorial/master.svg)](https://codecov.io/github/amercier/react-redux-tutorial?branch=master)
[![Dependency Status](https://img.shields.io/david/amercier/react-redux-tutorial.svg)](https://david-dm.org/amercier/react-redux-tutorial)
[![devDependency Status](https://img.shields.io/david/dev/amercier/react-redux-tutorial.svg)](https://david-dm.org/amercier/react-redux-tutorial#info=devDependencies)
[![Greenkeeper](https://badges.greenkeeper.io/amercier/react-redux-tutorial.svg)](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

[![Demo](https://img.shields.io/website-up-down-green-red/https/react-redux-tutorial.amercier.com.svg?label=demo)](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](https://img.shields.io/github/license/amercier/react-redux-tutorial.svg)](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/