TypeScript 第一个应用

TypeScript 是一种由微软开发的自由和开源的编程语言, 它是 JavaScript 的一个超集,扩展了 JavaScript 的语法

本章,我们就用 TypeScript 语言开发一个简单的 Hello World 应用

TypeScript Hello World

1. 首先,我们创建一个 index.html 文件

index.html

<!DOCTYPE html> 
<meta charset="utf-8"> 
<title>学习 TypeScript 基础教程</title>
<script src="hello.js"></script>

2. 其次,创建 hello.ts 文件

*.ts 是 TypeScript 文件的后缀

hello.ts

alert('hello world in TypeScript!');

3. 然后,打开命令行,使用 tsc 命令编译 hello.ts 文件

$ tsc hello.ts

在相同目录下就会生成一个 hello.js 文件

$ tree .
.
├── hello.js
├── hello.ts
└── index.html

0 directories, 3 files

4. 最后,在浏览器中打开 index.html,显示效果如下

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.