📅  最后修改于: 2021-01-11 12:16:43             🧑  作者: Mango
在本节中,我们将学习如何安装TypeScript,安装TypeScript的先决条件以及可以通过几种方式安装TypeScript。
有两种安装TypeScript的方法:
步骤1安装Node.js。它用于在我们的本地计算机上设置TypeScript。
要在Windows上安装Node.js,请转到以下链接: https://www.javatpoint.com/install-nodejs
要在Linux / Ubuntu / CentOS中安装Node.js,请转到以下链接: https://www.javatpoint.com/install-nodejs-on-linux-ubuntu-centos
要验证安装是否成功,请在“终端窗口”中输入以下命令。
$ node -v
$ npm -v
步骤2安装TypeScript。要安装TypeScript,请在“终端窗口”中输入以下命令。
$ npm install typescript --save-dev //As dev dependency
$ npm install typescript -g //Install as a global module
$ npm install typescript@latest -g //Install latest if you have an older version
步骤3要验证安装是否成功,请在终端窗口中输入命令$ tsc -v。
步骤1安装IDE,例如Eclipse,Visual Studio,WebStorm,Atom,Sublime Text等。在这里,我们安装Eclipse。要安装Eclipse,请转到以下链接:
在Windows中: https://www.javatpoint.com/javafx-how-to-install-eclipse
在乌班图: https://www.javatpoint.com/how-to-install-eclipse-in-ubuntu
在CentOS中: https://www.javatpoint.com/how-to-install-eclipse-on-centos
步骤2安装TypeScript插件。
我们也可以使用官方编译器在线运行脚本。为此,请转到以下链接。 https://www.typescriptlang.org/play/index.html