Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Learn React Router 5 - by ReactTraining.com

NotificationsYou must be signed in to change notification settings

ReactTraining/react-router-5-course

Repository files navigation

React Router 5 is out and we have created this course so you can learn all about it. The course covers basic and advanced topics. We'll be building a Firebase-looking app that has complex nested layouts and interesting problems to solve.

Animated Demo

What's New?

If you're wondering what's new in React Router 5? Not a lot, except internal optimizations and fixes for React 16.x. So you could also think of this as a React Router 4 course since the API is the same.See more info on the React Router 5 release.

Download and Install

After downloading the repository from Github, enter the following commands into your command line from the project folder:

npm installnpm start

Then go tolocalhost:8000

Be sure to see notes on Lesson Branches below...

Each Lesson is a Git Branch

To view the code for a given lesson,checkout the appropriate branch name. The branch will have the finished code from that lesson.

Installing lesson branches

All the branches are checked out to your local machine automatically when you donpm install. Just do agit branch to verify and see all branches after. If they didn't appear, try runningnpm run branches to download all the branches.

To view a branch:git checkout [branch-name]


Branch names are minimal for easy typing:

  • 01-basics - JSX Routing withBrowserRouter andRoute
  • 02-basics - Route Matching - Inclusive vs Exclusive (exact) and Switch
  • 03-basics -Link (anchors)
  • 04-basics -BrowserRouter vsHashRouter
  • 05-basics - Dynamic (Parameter) Matching
  • 06-basics - Nested Layout Strategy
  • 07-basics -match.url
  • 08-basics -match.path
  • 09-basics -NavLink
  • 10-basics -withRouter HoC
  • 11-basics - Programmatic Navigation (History Object)
  • 12-basics - URL Query Strings
  • 13-advanced - Route Render Methods
  • 14-advanced - React Router - Just Components ™
  • 15-advanced - Authentication Strategy with Context
  • 16-advanced - Authenticated Routes (Dynamic Routes)
  • 17-advanced - Navigation With State
  • 18-advanced - Prompt Before Route Changes
  • 19-advanced - Animating Route Changes (Part One)
  • 20-advanced - Animating Route Changes (Part Two)

Fake Database

Just so we can mimic some data and pretend it's asynchronous, there's asrc/database.json. Feel free to add more "Firebase Projects" if you want.

The CSS

I usedclassName. Who cares, it keeps the styling clutter out of the JS files since this is teaching material for routing.

Code Organization

In/src you'll see:

  • layouts for highly re-usable app-wide layouts
  • styles for Sass modules
  • ui is where I like to put re-usable "leaf-types" of components
  • utils is a catch all for React components that are more utilitarian in nature (and less UI in nature) and other general utils.

Any other folders in/src is a section of the site, like/auth and/projects which correspond tolocalhost:8000/auth etc. I guess I could organize those into a/pages folder, but who likes deep nesting anyways?

About

Learn React Router 5 - by ReactTraining.com

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp