0.8.2 • Published 6 months ago

njs-types v0.8.2

Weekly downloads
4
License
BSD-2-Clause
Repository
github
Last release
6 months ago

TypeScript definitions for njs

This package contains type definitions for njs – NGINX JavaScript.

Usage

Install njs-types from the npm registry into your project:

# using npm:
npm install --save-dev njs-types
# or using yarn:
yarn add --dev njs-types

njs-types provides three entry points with global declarations for each of njs environments:

  • njs_shell.d.ts – njs shell
  • ngx_http_js_module.d.ts – NGINX JS HTTP Module
  • ngx_stream_js_module.d.ts – NGINX JS Stream Module

You can either reference them using triple-slash directive at top of your .ts files (adjust path to point into your project’s node_modules):

/// <reference path="./node_modules/njs-types/ngx_http_js_module.d.ts" />

or include them using the files flag in your tsconfig.json, for example:

{
  "compilerOptions": {
    "target": "ES5",
    "module": "es2015",
    "lib": [
      "ES2015",
      "ES2016.Array.Include",
      "ES2017.Object",
      "ES2017.String"
    ],
    "outDir": "./lib",
    "downlevelIteration": true,

    "strict": true,
    "noImplicitAny": true,
    "strictNullChecks": true,
    "strictFunctionTypes": true,
    "strictBindCallApply": true,
    "strictPropertyInitialization": true,
    "noImplicitThis": true,
    "alwaysStrict": true,

    "moduleResolution": "node",

    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,
  },
  "include": [
    "./src",
  ],
  "files": [
    "./node_modules/njs-types/ngx_http_js_module.d.ts",
  ],
}

Versions

njs-types is typically being released together with njs. Their major and minor release numbers (the first two numbers) are always aligned, but the patch version (the third number) may differ. That's because njs-types may be updated between njs releases and in such case the patch version is incremented.

It's the same strategy as used in DefinitelyTyped. The reason is that npmjs enforces SemVer which doesn't allow four-part version number nor provide post-release suffixes.

You can find from which commit the package was built in file COMMITHASH inside the published package. It contains global revision id in the upstream repository https://hg.nginx.org/njs/ (Mercurial).

0.8.2

6 months ago

0.8.1

8 months ago

0.8.0

10 months ago

0.7.11

1 year ago

0.7.12

1 year ago

0.7.10

1 year ago

0.7.8

1 year ago

0.7.7

1 year ago

0.7.6

2 years ago

0.7.5

2 years ago

0.7.4

2 years ago

0.7.2

2 years ago

0.7.3

2 years ago

0.7.1

2 years ago

0.7.0

3 years ago

0.6.2

3 years ago

0.6.1

3 years ago

0.6.0

3 years ago

0.5.3

3 years ago

0.5.2

3 years ago

0.5.1

3 years ago

0.4.4

4 years ago

0.5.0-test

4 years ago

0.5.0-2

4 years ago

0.5.0

4 years ago

0.5.0-1

4 years ago