This repo contains boilerplate code to aid in the creation of a new React app with Redux. Follow the below setup instructions to get started.
- Fork this repo
- Clone your forked copy of this repo
git clone https://github.com/[Your Username]/react_starter.git
- Change directory into the newly cloned repo
cd react_starter
- Install dependencies
npm install
- Start dev server
npm start
- Open a browser and navigate to
localhost:3000
You should see a page that displays "Welcome to React!"
- Run webpack to bundle files
npm run bundle
NOTE: After bundling you can not directly run your app locally. You must run your app from the root directory of a server.