|
|
9 роки тому | |
|---|---|---|
| .. | ||
| modules | 9 роки тому | |
| README.md | 9 роки тому | |
| index.html | 9 роки тому | |
| index.js | 9 роки тому | |
| package.json | 9 роки тому | |
| webpack.config.js | 9 роки тому | |
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.
git clone <tutorial url>
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.
Open up modules/App.js and change the text to something like "Hello
". The browser automatically reloads with your new code.