# Getting Started with TypeScript
# Overview
# Environment Setup
$ npm install --global typescript ts-node
typescriptis the TypeScript compiler.ts-nodeis 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.