js_react__react-router-tuto.../lessons/01-setting-up
Chris Bolin 944256c188 Make <tutorial url> explicit
Make the setup fast and easy :)
2016-03-21 16:24:50 -04:00
..
modules Change tutorial structure to individual folders for each lesson 2016-03-08 10:08:54 -08:00
index.html Change tutorial structure to individual folders for each lesson 2016-03-08 10:08:54 -08:00
index.js Change tutorial structure to individual folders for each lesson 2016-03-08 10:08:54 -08:00
package.json Change tutorial structure to individual folders for each lesson 2016-03-08 10:08:54 -08:00
README.md Make <tutorial url> explicit 2016-03-21 16:24:50 -04:00
webpack.config.js Change tutorial structure to individual folders for each lesson 2016-03-08 10:08:54 -08:00

Setting up the Project

First you'll need Node.js and the package manager that comes with it: npm.

Once you've got that working, head to the command line where we'll set up our project.

Clone the Tutorial

git clone https://github.com/reactjs/react-router-tutorial
cd react-router-tutorial
cd lessons/01-setting-up
npm install
npm start

Now open up http://localhost:8080

Feel free to poke around the code to see how we're using webpack and npm scripts to run the app.

You should see a "Hello React Router" message in the browser.

Make Some Changes

Open up modules/App.js and change the text to something like "Hello ". The browser automatically reloads with your new code.


Next: Rendering a Router