Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thbar/typescript-playground
https://github.com/thbar/typescript-playground
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/thbar/typescript-playground
- Owner: thbar
- Created: 2020-08-21T13:15:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-30T08:59:36.000Z (over 2 years ago)
- Last Synced: 2024-10-14T02:50:05.155Z (2 months ago)
- Language: TypeScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
### Installation
I'm installing Node via [asdf-nodejs](https://github.com/asdf-vm/asdf-nodejs).
```
asdf install
```Then [installing typescript as a npm package](https://www.typescriptlang.org/download), initially done with:
```
npm install typescript --save-dev
```Later runs can just use `npm install` to install what is specified in `package-lock.json` automatically.
Installation can be verified with:
```
npx tsc --version
```Code can be run with:
```
npx tsc MyCode.ts
```