An open API service indexing awesome lists of open source software.

https://github.com/wichopy/ga-react-workshop


https://github.com/wichopy/ga-react-workshop

Last synced: 10 months ago
JSON representation

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
```