Mike North's Full Stack TypeScript course
- Video: Frontend Masters
- Course website: TypeScript Training: Full Stack TypeScript
First, if you want to ensure you're using the correct Node.js and package manager versions, install Volta
# install Volta
curl https://get.volta.sh | bash
# install Node
volta install node
Then, check out a local copy of this repository
git clone git@github.com:mike-north/full-stack-ts
cd full-stack-typescript
Next, install the project dependencies
yarn
Build the project for the first time
yarn build
And finally, start the project
yarn dev
After the client and server build processes complete, you should see an "imitation Twitter" running on http://localhost:1234.
© 2022 Mike North, all rights reserved.