# Installs all dependencies
npm install
# Asks you which exercise you'd like to run, and runs it
npm run exerciseThe course is split into exercises. Each exercise is split into a *.problem and a *.solution.
To take an exercise:
- Run
npm run exercise - Choose which exercise you'd like to run.
This course encourages active, exploratory learning. You'll be asked to try to find a solution. To attempt a solution, you'll need to:
- Check out TypeScript's docs or the React TypeScript cheatsheet
- Try to find something that looks relevant.
- Give it a go to see if it solves the problem.
You'll know if you've succeeded because the tests will pass.
Alias: npm run e
Opens a prompt for choosing which exercise you'd like to run.