react-router-tutorial icon indicating copy to clipboard operation
react-router-tutorial copied to clipboard

Results 72 react-router-tutorial issues
Sort by recently updated
recently updated
newest added
trafficstars

Following the lesson 13 tutorial I wasn't able to render the full server side HTML for the root path ('/'). This is a very important thing for apps that relies...

These instructions are very obvious for someone who has some experience programming with node, but just to avoid beginners getting stuck.This commit adds "cd 02-rendering-a-route" and "npm install" to instructions.

if you follow the lesson and copy the path param in the webpack config snippet code ``` // webpack.config.js output: { path: 'public', filename: 'bundle.js', publicPath: '/' } ``` that...

change app.use(express.static(path.join(__dirname, 'public'))) to: app.use(express.static(path.join(__dirname, 'public'), {index: false}))

In this patch, the navigation list is changed such that the proper HTML navigation element is used.

In lesson 03-navigating-with-link it's suggested that: ``` It's almost identical to the tag you're used ``` While this is true, the *almost* is really understated here. I foolishly expected relative...

Is it just me or is it a bit annoying to have to install node modules for each lesson? Would it not make more sense to share the packages?

I want people visit my project via "http://www.*****.com" so i use the following to output: ![qq 20161118173951](https://cloud.githubusercontent.com/assets/17329044/20425561/11d198a6-adb6-11e6-802f-0052d36987bf.png) then i import this bundle.js in the html, code as follow: ``` My...

With this . in the current location location, 'npm start' will throw an error.