https://github.com/mehradi-github/ref-typescript
TypeScript Basics with example
https://github.com/mehradi-github/ref-typescript
Last synced: 10 months ago
JSON representation
TypeScript Basics with example
- Host: GitHub
- URL: https://github.com/mehradi-github/ref-typescript
- Owner: mehradi-github
- License: mit
- Created: 2023-11-08T06:32:51.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-12T05:39:31.000Z (over 2 years ago)
- Last Synced: 2025-02-05T07:12:06.171Z (over 1 year ago)
- Language: TypeScript
- Size: 32.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Typescript
[TypeScript ](https://www.typescriptlang.org/docs/handbook/intro.html)is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale.
- TypeScript adds additional syntax to JavaScript to support a tighter integration with your editor. Catch errors early in your editor.
- TypeScript code converts to JavaScript, which runs anywhere JavaScript
- TypeScript understands JavaScript and uses type inference to give you great tooling without additional code.
## Installing
```sh
pnpm init
pnpm add -D typescript nodemon ts-node
pnpm tsc --init
# OR
pnpm create vite@latest .
```