programming language, superset of JavaScript that compiles to JavaScript

TypeScript (TS) is a high-level programming language that adds static typing with optional type annotations to JavaScript. It is designed for developing large applications. It transpiles to JavaScript. It is developed by … Wikipedia
Factsheet
Family ECMAScript
Designed by Microsoft,
Anders Hejlsberg,
Luke Hoban
Factsheet
Family ECMAScript
Designed by Microsoft,
Anders Hejlsberg,
Luke Hoban
🌐
npm
npmjs.com › package › typescript
typescript - npm
npm install -D typescript · For our nightly builds: npm install -D typescript@next · There are many ways to contribute to TypeScript. Submit bugs and help us verify fixes as they are checked in.
      » npm install typescript
    
Published   Sep 30, 2025
Version   5.9.3
Author   Microsoft Corp.
🌐
TypeScript
typescriptlang.org › download
TypeScript: How to set up TypeScript
To do this, run npm install -g typescript. This will install the latest version (currently 5.9).
🌐
npm
npmjs.com › package › tsc
tsc - npm
A deprecated release of the TypeScript compiler. Latest version: 2.0.4, last published: 4 years ago. Start using tsc in your project by running `npm i tsc`. There are 774 other projects in the npm registry using tsc.
      » npm install tsc
    
Published   Jan 15, 2022
Version   2.0.4
🌐
daily.dev
daily.dev › home › blog › get into tech › npm tsc and typescript projects
Npm tsc and TypeScript Projects
February 4, 2025 - To use tsc with npm, you can install TypeScript globally on your computer with npm install -g typescript. This lets you use the tsc command from anywhere on your computer.
🌐
Execute Program
executeprogram.com › courses › typescript-basics › articles › how-to-install-typescript
How to install TypeScript
Learn programming languages like TypeScript, Python, JavaScript, SQL, and regular expressions. Interactive with real code examples.
🌐
Graphite
graphite.com › guides › npm-typescript
Using npm with TypeScript
To start using TypeScript in your projects, you first need to install it globally or locally using npm. This allows you to compile TypeScript files into JavaScript. ... This command installs TypeScript globally on your machine, allowing you ...
Find elsewhere
🌐
Visual Studio Code
code.visualstudio.com › docs › typescript › typescript-compiling
Compiling TypeScript
November 3, 2021 - Visual Studio Code includes TypeScript language support but does not include the TypeScript compiler, tsc. You will need to install the TypeScript compiler either globally or in your workspace to transpile TypeScript source code to JavaScript (tsc HelloWorld.ts). The easiest way to install TypeScript is through npm, the Node.js Package Manager.
🌐
GeeksforGeeks
geeksforgeeks.org › installation guide › how-to-install-typescript
How to install TypeScript ? - GeeksforGeeks
July 23, 2025 - 2. Use NPM to Install TypeScript: Run the following command to install TypeScript globally: ... Here tsc is a typescript compiler and the -v flag indicates that we are displaying the version of the typescript as shown in the image below:
🌐
npm
npmjs.com › ts-node
ts-node - npm
# Locally in your project. npm install -D typescript npm install -D ts-node # Or globally with TypeScript. npm install -g typescript npm install -g ts-node # Depending on configuration, you may also need these npm install -D tslib @types/node ...
      » npm install ts-node
    
Published   Dec 08, 2023
Version   10.9.2
Author   Blake Embrey
🌐
Learn TypeScript
learntypescript.dev › 11 › l1-installing-running-compiler
Installing and running the compiler | Learn TypeScript
This command first downloads and installs the typescript npm package. tsc is the executable name of the TypeScript compiler.
🌐
Carl Rippon
carlrippon.com › installing-and-running-the-typescript-compiler
Installing and Running the TypeScript Compiler | Building SPAs
This command first downloads and installs the typescript npm package. tsc is the executable name of the TypeScript compiler.
🌐
Tutorial Teacher
tutorialsteacher.com › typescript › typescript-environment-setup
Install TypeScript
To install or update the latest version of TypeScript, open command prompt/terminal and type the following command:npm install -g typescript · The above command will install TypeScript globally so that you can use it in any project.
🌐
TypeScript TV
typescript.tv › course › 02-installing-nodejs-and-typescript
TypeScript TV
The TypeScript Compiler, tsc itself is a tool that compiles TypeScript code into JavaScript code, which can then be run in a browser or Node.js environment. There is a great article online from Andrew Branch if you are interested in debugging the TypeScript Codebase. Installing and Managing Node.js: You have learned how to install Node.js using the official installer and why choosing the LTS version is recommended for stability and long-term support.
🌐
Graphite
graphite.com › guides › install-typescript
How to install TypeScript
npm install -g typescript · The -g flag stands for "global." This installation method is useful if you want to run TypeScript commands from any location on your machine or if you're setting up a machine where multiple projects will use the ...
🌐
WebDevAssist
webdevassist.com › typescript › typescript-installation
How to install TypeScript
npm install typescript --save-dev · or · yarn add typescript --dev · or · pnpm add typescript -D · Once it is installed, you can run the typescript compiler by using: npx tsc · or · yarn tsc · or · pnpx tsc · We can also install typescript through VSCode while using NuGet.
🌐
Reddit
reddit.com › r/typescript › windows 10 - how do i install tsc? or even npm for that matter? typerscript is supposedly installed.
r/typescript on Reddit: Windows 10 - How do I install tsc? Or even npm for that matter? Typerscript is supposedly installed.
September 22, 2021 -

Do I need Visual Studio? I only want to run transpile one project into js. What hoops must I jump through to do that? The instructions I've found assume I have something I don't. I used chocolatey to install typescript, which installed nodejs, but I don't have npm or npx, which are not installs provided by cholocatey. So where do I look next?