0.3.20 • Published 15 hours ago

process-versions v0.3.20

Weekly downloads
-
License
MIT
Repository
github
Last release
15 hours ago

process-versions

A dataset showing the compiled process version dependencies of different Node.js versions

Installation

yarn add process-versions

npm install process-versions

Javascript usage

const dependencyData = require('process-versions');

// prints out 1.0.9
console.log(dependencyData['16.13.0'].brotli);

Typescript usage

import dependencyData from 'process-versions';

// prints out 1.0.9
console.log(dependencyData['16.13.0'].brotli);

Data Structure

The modules exports a json file directly, where each key in the object is a version of Node.js (currently only starting with 16.9.0) and the value is an object where each key is a dependency with its value representing the version that was compiled into that specific version of Node.js.

If this were to be defined as a Typescript type, it would look something like this:

type DependencyMap = {
  "node": string;
  "v8": string;
  "uv": string;
  "zlib": string;
  "brotli": string;
  "ares": string;
  "modules": string;
  "nghttp2": string;
  "napi": string;
  "llhttp": string;
  "openssl": string;
  "cldr": string;
  "icu": string;
  "tz": string;
  "unicode": string;
  "ngtcp2": string;
  "nghttp3": string;
};

type ProcessVersions = { [id: string]: DependencyMap };
0.3.20

15 hours ago

0.3.19

3 days ago

0.3.18

8 days ago

0.3.17

15 days ago

0.3.16

29 days ago

0.3.15

30 days ago

0.3.14

1 month ago

0.3.13

1 month ago

0.3.12

1 month ago

0.3.11

2 months ago

0.3.10

2 months ago

0.3.9

3 months ago

0.3.8

4 months ago

0.3.7

4 months ago

0.3.6

4 months ago

0.3.5

5 months ago

0.3.2

5 months ago

0.3.1

6 months ago

0.3.4

5 months ago

0.3.3

5 months ago

0.2.35

8 months ago

0.2.34

8 months ago

0.2.27

11 months ago

0.2.26

12 months ago

0.2.30

10 months ago

0.2.33

8 months ago

0.2.32

9 months ago

0.2.31

10 months ago

0.2.29

10 months ago

0.2.28

11 months ago

0.2.25

1 year ago

0.2.24

1 year ago

0.2.23

1 year ago

0.2.22

1 year ago

0.2.21

1 year ago

0.2.20

1 year ago

0.2.19

1 year ago

0.2.18

1 year ago

0.2.17

1 year ago

0.2.16

1 year ago

0.2.15

1 year ago

0.2.14

1 year ago

0.2.13

1 year ago

0.2.12

1 year ago

0.2.11

1 year ago

0.2.10

1 year ago

0.2.9

1 year ago

0.2.8

1 year ago

0.2.7

1 year ago

0.2.6

1 year ago

0.2.5

1 year ago

0.2.4

2 years ago

0.2.3

2 years ago

0.2.2

2 years ago

0.2.1

2 years ago

0.1.0

2 years ago