Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 978 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 978 Bytes

Simple React Redux Boilerplate

I created this repo for the purposes of following along with Dan Abromov's egghead tutorials seen here:

Getting Started with Redux

Building React Applications with Idiomatic Redux

If you follow along with these courses you may need to install additional dependencies:

npm install --save expect
npm install --save deep-freeze
npm install --save react-router

And import as needed:

import expect from 'expect';
import deepFreeze from 'deep-freeze';
import { Router, Route, Link } from 'react-router'

To get started:

$ webpack-dev-server

If you have problems with this command and you have not used webpack before, you may need to install webpack globally:

npm install -g webpack

and restart your terminal.

Feel free to just use this repo for what you want!