https://github.com/planetoftheweb/reactinterface2
Repository for the second version of my React Interface course on LinkedIn Learning and Lynda.com
https://github.com/planetoftheweb/reactinterface2
Last synced: about 1 year ago
JSON representation
Repository for the second version of my React Interface course on LinkedIn Learning and Lynda.com
- Host: GitHub
- URL: https://github.com/planetoftheweb/reactinterface2
- Owner: planetoftheweb
- License: bsd-2-clause
- Created: 2018-12-06T16:18:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-14T18:29:41.000Z (over 3 years ago)
- Last Synced: 2025-04-09T18:19:51.886Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.21 MB
- Stars: 157
- Watchers: 15
- Forks: 164
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React: Building an Interface
This is the repository for my course React: Building an Interface. The full course is available on LinkedIn Learning.
## Instructions
This repository has branches for each of the videos in the course. You can use the branch pop up menu in github to switch to a specific branch and take a look at the course at that stage. Or you can simply add `/tree/BRANCH_NAME` to the URL to go to the branch you want to peek at.
## Branches
The branches are structured so that they correspond to the videos in the course. So, for example if I name a branch `02_03` then that branch corresponds to the second chapter and the third video in that chapter. The extra letter at the end of the name corresponds to the state of the branch. A `b` means that this is how the code looks at the beginning of the video, an `e` means that is how the code looked at the end of the video. The `master` branch usually has the final state of the code when I finish the course.
## Installing
1. Make sure you have these installed
- [node.js](http://nodejs.org/)
- [git](http://git-scm.com/)
- [Create React App](https://facebook.github.io/create-react-app/)
2. Clone this repository into your local machine using the terminal (mac) or Gitbash (PC) `> git clone CLONEURL`
3. CD to the folder `cd FOLDERNAME`
4. Run `npm install` to install the project dependencies
5. Run `npm start` to start live preview server
## Downloading All Branches
For more advanced users, you can also download all of the branches for this repository.
1. `mkdir NAME`
1. `cd NAME`
1. `git clone --bare CLONEURL .git` (make sure you add extra .git)
1. `git config --bool core.bare false`
1. `git reset --hard`
1. Run `npm install` to install the project dependencies
1. Run `npm start` to start live preview server
For advanced instructions of how to work with this and other courses with github repos, check out the course: [Learning Git and Github](https://linkedin-learning.pxf.io/c/1252977/449670/8005?subId1=githubrepo&u=https%3A%2F%2Fwww.linkedin.com%2Flearning%2Flearning-git-and-github):
## More Stuff
Check out some of my other courses on [LinkedIn Learning](https://linkedin-learning.pxf.io/c/1252977/449670/8005?subId1=githubrepo&u=https%3A%2F%2Fwww.linkedin.com%2Flearning%2Finstructors%2Fray-villalobos). You can follow me on [LinkedIn](https://www.linkedin.com/in/planetoftheweb/), read [my blog](http://raybo.org), [follow me on twitter](http://twitter.com/planetoftheweb), or check out my [youtube channel](http://youtube.com/planetoftheweb).