美文网首页
Hello TypeScript

Hello TypeScript

作者: jamesXiao_ | 来源:发表于2023-03-14 17:36 被阅读0次

    什么是 TypeScript

    Typed JavaScript at Any Scale.
    添加了类型系统的 JavaScript,适用于任何规模的项目。

    安装 TypeScript

    npm install -g typescript
    

    以上命令会在全局环境下安装 tsc 命令,安装完成之后,我们就可以在任何地方执行 tsc 命令了。
    编译一个 TypeScript 文件很简单:

    tsc hello.ts
    

    我们约定使用 TypeScript 编写的文件以 .ts 为后缀。

    Hello TypeScript

    新建hello.ts文件
    复制下面代码进文件

    function sayHello(person: string) {
        return 'Hello, ' + person;
    }
    
    let user = 'James';
    console.log(sayHello(user));
    

    然后执行

    tsc hello.ts
    

    这时候会生成一个编译好的文件 hello.js

    function sayHello(person) {
        return 'Hello, ' + person;
    }
    var user = 'James';
    console.log(sayHello(user));
    

    使用node执行该文件

    node hello.js
    

    相关文章

      网友评论

          本文标题:Hello TypeScript

          本文链接:https://www.haomeiwen.com/subject/hnrkrdtx.html