Skip to content

ellisonbg/jupyter-react-training

 
 

Repository files navigation

Welcome to React Training (for Jovyans)!

This repo contains course material from React Training (thanks react-training folks!). It's going to get modified over time to fit training folks for Jupyter-centric work. At the start of the training we'll make sure everyone can run this repository.

First, install git and the latest stable version of node. Then:

$ git clone https://github.com/rgbkrk/jupyter-react-training.git
$ cd jupyter-react-training
$ npm install
$ npm start

Your web browser should open to http://localhost:8080 where you'll see a list of subjects.

IMPORTANT: Please read the JavaScript Primer before attending the workshop. It's a refresher on some of the newer bits of JavaScript you'll want to be familiar with in order to get the most out of the experience.

Troubleshooting

A few common problems:

  • You're having problems cloning the repository. Some corporate networks block port 22, which git uses to communicate with GitHub over SSH. Instead of using SSH, clone the repo over HTTPS. Use the following command to tell git to always use https instead of git:
$ git config --global url."https://".insteadOf git://

# This adds the following to your `~/.gitconfig`:
[url "https://"]
  insteadOf = git://
  • You're having trouble installing node. We recommend using nvm. nvm makes it really easy to use multiple versions of node on the same machine painlessly. After you install nvm, install the latest stable version of node with the following command:
$ nvm use default stable
  • You don't have permissions to install stuff. You might see an error like EACCES during the npm install step. If that's the case, it probably means that at some point you did an sudo npm install and installed some stuff with root permissions. To fix this, you need to forcefully remove all files that npm caches on your machine and re-install without sudo.
$ 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 install

License

This 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 us at hello@reacttraining.com.

Note: mjackson gave us permission to use the contents here for training students at Cal Poly.

About

React Training for Jupyter Apps

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 98.5%
  • CSS 1.5%