# Getting Started with TypeScript

# Overview

# Environment Setup

$ npm install --global typescript ts-node
  • typescript is the TypeScript compiler.
  • ts-node is a little command line tool that allows us to compile and execute TypeScript with one command at our terminal.

# A First Application

We are going to create a simple application that make a network request to fetch some data in JSON format and print the result.

Last Updated: 12/15/2020, 10:27:30 PM