https://github.com/wizcorp/typescript-primer
Quick primer on the why, what and how of TypeScript
https://github.com/wizcorp/typescript-primer
nodejs ts-node typescript webpack
Last synced: 12 months ago
JSON representation
Quick primer on the why, what and how of TypeScript
- Host: GitHub
- URL: https://github.com/wizcorp/typescript-primer
- Owner: Wizcorp
- Created: 2018-04-18T06:15:32.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-21T06:36:50.000Z (over 7 years ago)
- Last Synced: 2025-02-12T06:24:50.214Z (about 1 year ago)
- Topics: nodejs, ts-node, typescript, webpack
- Language: TypeScript
- Homepage:
- Size: 76.2 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# 
> JavaScript that scales.
Quick primer on the why, what and how of [TypeScript](https://www.typescriptlang.org/)
Presented to you by [Wizcorp](https://wizcorp.jp).
## Requirements
* Node.js 8 or higher (recommend using [NVS](https://github.com/jasongin/nvs) or [NVM](https://github.com/creationix/nvm))
* A web browser (Chrome recommended)
> setup
```shell
npm install
npm install -g ts-node typescript
```
From the root of this repository, make sure to run `npm install` to
install all the dependencies you will need to run the examples.
## Chapters
### 01. Intro
- What is TypeScript?
- Why use TypeScript?
- Type system
### 02. Compiler and typings
- tsconfig.json
- Type definition files
- Typing dependencies
- DefinitelyTyped (`@types`)
### 03. Tools
- tslint
- typedoc
- jscpd
### 04. Webpack