全局安装TypeScript,并测试: 1 2 3 4 5 6 7 # 安装 npm install -g typescript # 测试 tsc -V 第一个TypeScript程序 准备源码: 1 2 3 4 5 6 7 8 9 function greeter(person) { return `Hello, ${person}`; } let user = 'Yee'; console.log(greeter(user)); 编译并运行: tsc helloword.ts node helloword.js 声明文件 类型断言
全局安装TypeScript,并测试: 1 2 3 4 5 6 7 # 安装 npm install -g typescript # 测试 tsc -V 第一个TypeScript程序 准备源码: 1 2 3 4 5 6 7 8 9 function greeter(person) { return `Hello, ${person}`; } let user = 'Yee'; console.log(greeter(user)); 编译并运行: tsc helloword.ts node helloword.js