Helpful commands, references, and cheatsheets
React Cheatsheet
React Tutorials by Egghead.io
Making Sense of React Hooks
8 Ways to Handle React State by Cory House
Redux Cheatsheet
Redux Thunks
10 Tips for Better Redux Architecture
Ten minute introduction to MobX and React
CRUD Actions
Creating a Migration
- Revert back to the last commit, removing any local changes:
git reset --hard HEAD
- Undo latest commit, keeping any local changes:
git reset HEAD^
- Unstage a staged file or files:
git reset [<FILE>]
- Remove a file from git tracking
git rm --cached <FILE>
- Edit the latest local commit message:
git commit --amend
- Revert a file to last committed local version:
git checkout -- <FILE>
- Rename your current working local branch:
git branch -m <NEW_NAME>
Tags are for semantics, IDs are for references, classes are for styles.
- Show globally installed NPM packages:
npm ls -g --depth=0