2024年11月16日 TypeScript 安装 极客笔记
在这一部分中,我们将学习如何安装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步 安装像Eclipse、Visual Studio、WebStorm、Atom、Sublime Text等IDE。
第2步 安装TypeScript插件。
本文链接:http://so.lmcjl.com/news/17973/