https://github.com/yds12/ts-cheatsheet
Cheatsheet for the Typescript language.
https://github.com/yds12/ts-cheatsheet
cheatsheet tutorial typescript typescript-language
Last synced: 6 months ago
JSON representation
Cheatsheet for the Typescript language.
- Host: GitHub
- URL: https://github.com/yds12/ts-cheatsheet
- Owner: yds12
- Created: 2020-04-29T11:06:05.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-29T17:04:35.000Z (almost 6 years ago)
- Last Synced: 2025-01-13T15:29:40.235Z (about 1 year ago)
- Topics: cheatsheet, tutorial, typescript, typescript-language
- Language: TypeScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Typescript Cheatsheet
Project with a cheatsheet for the programming language Typescript. To run,
clone this repository
git clone https://github.com/yds12/ts-cheatsheet.git
then `cd` into it and, with **Node.js** and **npm** installed, run:
npm install
This command will install the packages `typescript` (the Typescript compiler)
and `ts-node` (a REPL for Typescript).
Now you can try to compile the `.ts` files with:
npx tsc
It will generate an `index.js` file in the `dist` directory. All the interesting
stuff is, however, written as code and comments in the `src/index.ts` file.