thinking-in-react

Courseware and material for a class on React

Stars
9
Committers
1

Thinking in React

Getting started

To get started, clone this project and navigate to the directory

git clone https://github.com/lelandrichardson/thinking-in-react.git
cd thinking-in-react

To run this project

npm install
npm start

And that's it!. Open your browser to localhost:3000.

Don't have NPM installed?

You will want to have node and npm installed on your machine.

If you don't currently have nvm installed, you can install it with the following command:

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash

When that is done, run:

nvm install node

You should be ready to go!