使用 TypeScript 定义文件编写 njs 代码

编译 TypeScript 定义文件
API 检查和自动完成
编写类型安全的 njs 代码

TypeScript 是 JavaScript 的一个类型化超集,它编译成纯 JavaScript。

TypeScript 支持定义文件,这些文件包含现有 JavaScript 库的类型信息。这使得其他程序可以使用文件中定义的值,就像它们是静态类型的 TypeScript 实体一样。

njs 为其 API 提供了 TypeScript 定义文件,可用于

编译 TypeScript 定义文件

$ git clone https://github.com/nginx/njs
$ cd njs && ./configure && make ts
$ ls build/ts/
njs_core.d.ts
njs_shell.d.ts
ngx_http_js_module.d.ts
ngx_stream_js_module.d.ts

API 检查和自动完成

*.d.ts 文件放在编辑器可以找到的位置。

test.js:

/// <reference path="ngx_http_js_module.d.ts" />
/**
 * @param {NginxHTTPRequest} r
 * */
function content_handler(r) {
    r.headersOut['content-type'] = 'text/plain';
    r.return(200, "Hello");
}

编写类型安全的 njs 代码

test.ts:

/// <reference path="ngx_http_js_module.d.ts" />
function content_handler(r: NginxHTTPRequest) {
    r.headersOut['content-type'] = 'text/plain';
    r.return(200, "Hello from TypeScript");
}

TypeScript 安装

# npm install -g typescript

TypeScript 编译

$ tsc test.ts
$ cat test.js

生成的 test.js 文件可以直接与 njs 一起使用。