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
- Host: GitHub
- URL: https://github.com/codehakase/react30-source
- Owner: codehakase
- Created: 2017-09-11T10:20:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-12T18:53:02.000Z (over 8 years ago)
- Last Synced: 2025-02-01T21:14:00.982Z (12 months ago)
- Topics: frontend, hakaselabs, javascript, react, react30
- Language: JavaScript
- Size: 61.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)