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

https://github.com/codehakase/react30-source

Source for the 30 day ReactJS Article streak on https://hakakselabs.github.io
https://github.com/codehakase/react30-source

frontend hakaselabs javascript react react30

Last synced: 10 months ago
JSON representation

Source for the 30 day ReactJS Article streak on https://hakakselabs.github.io

Awesome Lists containing this project

README

          

# HakaseLabs React30
A 30 day React Article covering various concepts of the React JavaScript framework.

## Track
- Day 1 - [Getting Started, Basic Concepts](https://hakaselabs.github.io/2017-09-11/learning-react-day-1)
- Day 2 - [React Lifecycle Methods Pt1](https://hakaselabs.github.io/2017-09-11/learning-react-day-2)

## Running the Source locally
This Repo is updated by branches matching each day. You clone to your local machine:

```shell
$ git clone https://github.com/codehakase/react30-source.git react30
```
Once the repo is cloned, you need to download the dependencies needed:

```shell
$ cd react30
$ npm install
```

## Updating the sorce locally
Since this repo would be updated daily, you can always pull from the master branch:

```git
$ git checkout master && git pull
```

You can also pull the branch from a specific day:
```git
$ git checkout day-xx && git pull
```

## Branches
- Day 1 - (https://github.com/codehakase/react30-source/tree/day-1)