TypeScript 安装

TypeScript 安装

本文介绍 TypeScript 环境的安装。

我们需要使用到 npm 工具安装,如果你还不了解 npm,可以参考我们的NPM使用介绍。

NPM 安装 TypeScript

如果你的本地环境已经安装了 npm 工具,可以使用以下命令来安装:

npm install -g typescript

安装完成后我们可以使用 tsc 命令来执行 TypeScript 的相关代码,以下是查看版本号:

$ tsc -v
Version 3.2.2

然后我们新建一个 test.ts 的文件,代码如下:

var message:string = "Hello World" console.log(message)

通常我们使用 .ts 作为 TypeScript 代码文件的扩展名。

然后执行以下命令将 TypeScript 转换为 JavaScript 代码:

tsc test.ts

这时候再当前目录下(与 test.ts 同一目录)就会生成一个 test.js 文件,代码如下:

var message = "Hello World"; console.log(message);

使用 node 命令来执行 test.js 文件:

$ node test.js
Hello World

TypeScript 转换为 JavaScript 过程如下图:


Visual Studio Code 介绍

很多 IDE 都有支持 TypeScript 插件,如:Visual Studio,Sublime Text 2,WebStorm / PHPStorm,Eclipse 等。

本章节主要介绍 Visual Studio Code,Visual Studio Code 是一个可以运行于 Mac OS X、Windows 和 Linux 之上的,针对于编写现代 Web 和云应用的跨平台源代码编辑器,由 Microsoft 公司开发。

Windows 上安装 Visual Studio Code

2、双击 VSCodeSetup.exe 图标  安装。

3、安装完成后,打开 Visual Studio Code 界面类似如下:

4、 我们可以在左侧窗口中点击当期编辑的代码文件,选择 open in command prompt(在终端中打开),这时候我们就可以在屏幕的右侧下半部分使用 tsc 命令来执行 TypeScript 文件代码了。

原文地址:https://www.cnblogs.com/xiewangfei123/p/12419492.html

时间: 2024-11-05 21:43:06

TypeScript 安装的相关文章

Eclipse TypeScript 安装

一.设置网络代理  1)步骤--window -->>NetWork Conntions->  2)打开QQ IP代理找一个网速快的IP设置,建议使用美国的.. 二.Install new SoftWare http://eclipse-update.palantir.com/eclipse-typescript/ 三.注意 1)不要勾选Enable typeScript Builder,勾选了这个它不会帮你生成js文件 2)勾选Disable typeScript Builder即可 

layabox typescript 安装固定版本

安装最新版本方法: https://blog.csdn.net/adelais__/article/details/79181474 固定版本(比如2.1.5): C:\Users\Administrator\Desktop>npm list --depth=0 -global C:\Users\Administrator\AppData\Roaming\npm +-- [email protected]5.1.1 `-- [email protected]3.1.2 C:\Users\Admi

TypeScript(-)-------安装编译执行

1 NPM 安装 TypeScript npm install -g typescript 查看版本 tsc -v 2 创建ts文件 test.ts 3 编译js文件,生成文件test.js  tsc test.ts 4 执行 node test.js 原文地址:https://www.cnblogs.com/yintian908/p/11157389.html

搭建typescript开发环境最详细的全过程

本文<搭建typescript开发环境最详细的全过程>的源代码在 https://github.com/lingsbb/ts_demo/ 下载. 搭建typescript开发示例https://github.com/Microsoft/TypeScriptSamples typescript案例https://www.tslang.cn/samples/index.html 安装git:http://git-scm.com/download下安装git 安装node:https://nodej

0前端 框架 库_千万别去碰js呀 混合APP_webAPP_美工 选有类型的语言,比如TypeScript

component 组件 成分; 零件; [数]要素; 组分; Angular2怎么使用第三方的component库(如 jquery,easyUI ,Bootstrap 等) PWA  增强web app helloWorld跑起来了,之前失败是因为Chrome服务器插件要FQ才能下载 https://developers.google.cn/web/fundamentals/getting-started/codelabs/your-first-pwapp/ 安装谷歌插件 web-serve

TypeScript之面向对象初体验

1.安装nodejs和vscode: nodejs : https://nodejs.org/en/ Visual Studio Code :  https://www.visualstudio.com/en-us/products/code-vs.aspx 安装是很简单的,一路next就行,此处不详细描述. 检验node是否安装成功,打开命令行,输入node -v, 显示如下图,说明安装成功. PS: TypeScript毕竟是微软发明的,用微软的编辑器更省心,当然不是必须的,否则得根据你的编

YouCompleteMe 编译全功能安装

YCM源码地址:https://github.com/Valloric/YouCompleteMe 安装依赖: sudo apt-get install build-essential cmake sudo apt-get install python-dev python3-dev 获取源码 git clone https://github.com/Valloric/YouCompleteMe.git ~/.vim/bundle/YouCompleteMe cd ~/.vim/bundle 安

在Angular2 如何通过npm安装lodash模块

为了更好地在angular2 里面对JSON 数据进行处理.我们可以添加lodash模块来更加简便我们的工作 这里我简单介绍一下如何安装lodash 到angular2 前提: 01 这里默认已经安装了node.js. 02 默认typescript 版本>2.0 eg "typescript": "^2.0.3", 03 默认已经创建angular2 npm 架构的项目 1 通过npm 安装lodash.这里可以通过以下命令行来安装 $ npm i -g n

TypeScript学习(一)

TypeScript安装: npm install -g typescript  [全局安装TypeScript] tsc -v [查看tsc版本] tsctypescript的编译工具[把typescript代码编译成浏览器可以执行的javascript代码]- 使用npm安装了全局typescript后会自动安装tsc 字符串:1.使用 `` 两个撇号连接,可以随意换行 2.多行字符串表达式写法: [使用``双撇号包裹,绑定变量使用 ${} ][不使用双撇号是不可以这样写的] 3.自动拆分字