https://github.com/tgdev/egghead-redux-part2
A repo to help document my progress to Dan Abramov's "Building React applications with idiomatic redux" course on egghead.io
https://github.com/tgdev/egghead-redux-part2
Last synced: 10 months ago
JSON representation
A repo to help document my progress to Dan Abramov's "Building React applications with idiomatic redux" course on egghead.io
- Host: GitHub
- URL: https://github.com/tgdev/egghead-redux-part2
- Owner: tgdev
- License: mit
- Created: 2017-12-27T04:22:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-27T05:36:13.000Z (over 8 years ago)
- Last Synced: 2025-08-02T15:43:42.500Z (11 months ago)
- Language: JavaScript
- Size: 81.1 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Building React applications with idiomatic redux
Dan Abramov's course on [egghead.io](https://egghead.io/courses/building-react-applications-with-idiomatic-redux.
### Dependencies
- Node (v8.9.1)
- Yarn (v1.3.2)
### Tools used
- **Babel:** ES6 support
- **ESLint:** File linting
- **Webpack:** Asset bundling
- **Jest:** Unit testing
- **Enzyme:** Snapshot testing React components
- **React:** UI Components
- **Redux:** App state management
### Getting started
**Fire up local dev server and watch tests**
```bash
yarn start
```
- Watches `js` tests
- Watches `js` files for lint errors
- Opens new browser tab at `http://localhost:8080`
**Fire up server only**
```bash
yarn serve
```
**Watch Jest tests only**
```bash
yarn test:watch
```
**Output test coverage to terminal**
```bash
yarn test:coverage
```
### Contributing
This is purely for educational purposes to allow me to follow along with the videos and commit my progress, possibly refactoring parts if I see fit or want to experiment further.