https://github.com/tgdev/egghead-redux-part1
A repo to help document my progress to Dan Abramov's Getting started with Redux course on egghead.io
https://github.com/tgdev/egghead-redux-part1
Last synced: over 1 year ago
JSON representation
A repo to help document my progress to Dan Abramov's Getting started with Redux course on egghead.io
- Host: GitHub
- URL: https://github.com/tgdev/egghead-redux-part1
- Owner: tgdev
- License: mit
- Created: 2017-11-12T12:51:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-19T23:56:08.000Z (over 8 years ago)
- Last Synced: 2025-01-29T21:44:05.157Z (over 1 year ago)
- Language: JavaScript
- Size: 313 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Getting started with Redux
Dan Abramov's course on [egghead.io](https://egghead.io/courses/getting-started-with-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.