An open API service indexing awesome lists of open source software.

https://github.com/annastacia-dev/typescript-basics


https://github.com/annastacia-dev/typescript-basics

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Typescript-basics

A collection of TypeScript examples that I've created to help me learn the language.

## Installations

Assuming you have [Node.js](https://nodejs.org/en/) installed, you can install TypeScript using npm.

To install TypeScript, you can use npm:

```bash
npm install -g typescript
```

You should also install ts-node, which is a TypeScript execution and REPL for node.js, with the following command:

```bash
npm install -g ts-node
```

You can also use the [TypeScript Playground](https://www.typescriptlang.org/play/) to try out TypeScript without installing anything on your computer.

## Getting Started

To get started, clone the repository and install the dependencies:

```bash
git clone [email protected]:Annastacia-dev/typescript-basics.git
cd typescript-basics
npm install
```