Typescript

One time setup

npm i -g typescript ts-node

tsc --help

To Run:
    tsc index.ts
    node index.js
OR 
    ts-node index.ts
  

React with Typescript

      npx create-react-app my-app --template typescript
      OR
      npx create-react-app . --template typescript