https://github.com/wichopy/ga-react-workshop
https://github.com/wichopy/ga-react-workshop
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wichopy/ga-react-workshop
- Owner: wichopy
- Created: 2017-03-14T21:59:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-14T22:02:43.000Z (over 9 years ago)
- Last Synced: 2025-01-22T01:47:05.816Z (over 1 year ago)
- Language: JavaScript
- Size: 356 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-workshop
## First time setup
1. Install nvm
Installing Node via nvm is recommended. Install [nvm](https://github.com/creationix/nvm) (Node Version Manager) via the [nvm install script](https://github.com/creationix/nvm#install-script).
2. Install node
Use nvm to install the version of node.js specified in [.nvmrc](.nvmrc). Your package manager, npm, is included with the node installation.
```shell
nvm install
```
3. Clone this repo and `cd` into the directory
```shell
git clone git@github.com:generalassembly/react-workshop.git && cd ./react-workshop
```
4. Install dependencies with `npm install`
```shell
npm install
```
5. Start server
```shell
bin/run
```