After each session class notes and exercises will be posted to this repo.
To try the code and exercises you should
- Fork this repo
- Clone your forked repo
git clone [paste link to your repo here]
The steps above only need to be done once
After each session you can:
- Sync your forked repo
- Pull the updates
git pull
- Work on the exercises for the session
- To run tests locally run
npm install
once - Run
npm test
to run the unit tests - If you'd like to autorun tests as you code, you can run the command
npm test -- --watchAll
- To run tests locally run
- Add, Commit, and Push your work to your own repo
git add .
git commit -m '[your commit message here]'
git push
- To submit your work after the session, open a pull request from your repo back to the CUNYTechPrep/js-summer-prep-2022 repo here