| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Before attending the workshop, please make sure you can run the apps in this repository.
You will need:
Please install them if you don't have them already.
From the command line, clone the repository:
$ git clone https://github.com/reach/modern-advanced-react-workshop$ cd modern-advanced-react-workshop
$ yarnThis will install all the dependencies for all of the exercises, it might take a while.
You can use npm but yarn's caching will make it a better experience.
Each exercise is a separate app using Create React App.
To run one, first cd into the directory:
cd 01-imperative-to-declarative/exerciseThen run it
yarn startYour browser should open up to a running app.
A few common problems:
$ git config --global url."https://".insteadOf git://
# This adds the following to your `~/.gitconfig`:
[url "https://"]
insteadOf = git://$ nvm use default stable$ sudo rm -rf node_modules
# If you installed node with nvm (suggested):
$ sudo rm -rf ~/.npm
# If you installed node with Homebrew:
$ sudo rm -rf /usr/local/lib/node_modules
# Then (look ma, no sudo!):
$ npm installThis material is available for private, non-commercial use under the GPL version 3. If you would like to use this material to conduct your own workshop, please contact me at ryan@workshop.me.
| Back | FazBrowse Home | New Git URL |