https://github.com/ultimatecourses/typescript-masterclass-src
TypeScript Masterclass. Advanced TypeScript, comprehensively covered in real-world digestable chapters.
https://github.com/ultimatecourses/typescript-masterclass-src
Last synced: about 1 year ago
JSON representation
TypeScript Masterclass. Advanced TypeScript, comprehensively covered in real-world digestable chapters.
- Host: GitHub
- URL: https://github.com/ultimatecourses/typescript-masterclass-src
- Owner: ultimatecourses
- Created: 2018-04-29T12:58:01.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T20:38:00.000Z (over 3 years ago)
- Last Synced: 2024-11-09T03:58:27.963Z (over 1 year ago)
- Language: TypeScript
- Homepage: https://ultimatecourses.com
- Size: 603 KB
- Stars: 75
- Watchers: 7
- Forks: 99
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
TypeScript: Masterclass Course Source
Source for our advanced TypeScript Masterclass course.
---
---
> This repo serves as the seed project for Ultimate Angular's TypeScript Masterclass course as well as the final solution in stepped branches, come and [learn TypeScript](https://ultimatecourses.com/courses/typescript) with us!
[Setup and install](#setup-and-install) | [Tasks](#tasks) |
[Resources](#resources)
## Setup and install
Fork this repo from inside GitHub so you can commit directly to your account, or
simply download the `.zip` bundle with the contents inside.
#### Dependency installation
During the time building this project, you'll need development dependencies of
which run on Node.js, follow the steps below for setting everything up (if you
have some of these already, skip to the next step where appropriate):
1. Download and install [Node.js here](https://nodejs.org/en/download/) for
Windows or for Mac.
2. Install TypeScript globally via `npm i -g typescript`
That's about it for tooling you'll need to run the project, let's move onto the
project install.
#### Project installation and server
Now you've pulled down the repo and have everything setup, using the terminal
you'll need to `cd` into the directory that you cloned the repo into and run
some quick tasks:
```
cd
yarn install
# OR
npm install
```
This will then setup all the development and production dependencies we need.
Now simply run this to boot up the server:
```
yarn start
# OR
npm start
```
Visit `localhost:3000` to start building.
## Tasks
A quick reminder of all tasks available:
#### Development server
```
yarn start
# OR
npm start
```
## Resources
There are several resources used inside this course, of which you can read
further about to dive deeper or understand in more detail what they are:
* [TypeScript Docs](https://www.typescriptlang.org)
* [TypeScript Playground](https://www.typescriptlang.org/play)
* [AST Explorer](https://astexplorer.net)