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