0% found this document useful (0 votes)
52 views5 pages

005 Set Up Dev Environment

This document provides an overview of setting up a development environment for React and TypeScript projects. It recommends using TypeScript over JavaScript, and the Visual Studio Code IDE which supports both languages. It also describes common command line tools like Node, NPM, and the TypeScript compiler. Finally, it directs the reader to a website for step-by-step installation instructions for each operating system.

Uploaded by

Diego Martin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
52 views5 pages

005 Set Up Dev Environment

This document provides an overview of setting up a development environment for React and TypeScript projects. It recommends using TypeScript over JavaScript, and the Visual Studio Code IDE which supports both languages. It also describes common command line tools like Node, NPM, and the TypeScript compiler. Finally, it directs the reader to a website for step-by-step installation instructions for each operating system.

Uploaded by

Diego Martin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Set up Dev Environment

React Development Tools


More on TypeScript with React
• You can use any text editor or IDE in upcoming videos

• Many React developers use the TypeScript language over JavaScript

• Superset of JavaScript

• Strongly-typed language with compile time checking and IDE support

• Command-line tools to compile code and create React apps/components

www.luv2code.com © luv2code LLC




Visual Studio Code
• Free IDE that supports multiple programming languages

• Has built-in support for TypeScript and JavaScript

• IDE features such as IntelliSense, Debugging, etc …

http://code.visualstudio.com

www.luv2code.com © luv2code LLC


Command-Line Tools

Tool Purpose

node For running JavaScript code from command-line

npm Node Package Manager


- Download new node packages and features. Similar to Maven

tsc TypeScript Compiler

www.luv2code.com © luv2code LLC


Installation Instructions
• Install tools: Visual Studio Code, node, npm, tsc

• Step-by-step instructions for each operating system

MS Windows Mac Linux

• View the instructions at the following link

www.luv2code.com/react-install-guides

www.luv2code.com © luv2code LLC






You might also like