• Home
Name Date Size #Lines LOC

..--

.github/12-May-2024-791591

benchmark/12-May-2024-17,65014,266

deps/12-May-2024-1,251,293873,221

doc/12-May-2024-119,452100,237

lib/12-May-2024-67,12450,695

src/12-May-2024-100,56276,247

test/12-May-2024-315,425233,744

tools/12-May-2024-601,856432,722

.clang-formatD12-May-20243.1 KiB112111

.cpplintD12-May-2024142 43

.editorconfigD12-May-2024457 2721

.eslintignoreD12-May-2024237 1312

.eslintrc.jsD12-May-20249.6 KiB295270

.flake8D12-May-2024136 43

.gitattributesD12-May-2024720 1918

.gitignoreD12-May-20242.4 KiB133120

.mailmapD12-May-202426.6 KiB472470

.nycrcD12-May-2024119 87

AUTHORSD12-May-2024116.1 KiB3,1443,141

BSDmakefileD12-May-2024263 129

BUILDING.mdD12-May-202429 KiB783576

CHANGELOG.mdD12-May-202452.7 KiB1,393759

CODE_OF_CONDUCT.mdD12-May-2024207 53

CONTRIBUTING.mdD12-May-20242.7 KiB5944

GOVERNANCE.mdD12-May-20247 KiB177130

LICENSED12-May-202479.4 KiB1,6011,342

MakefileD12-May-202447.3 KiB1,4261,115

OAT.xmlD12-May-202441.5 KiB406341

README.OpenSourceD12-May-2024515 1211

README.mdD12-May-202428.1 KiB647585

SECURITY.mdD12-May-20243.3 KiB7552

android-configureD12-May-20242.2 KiB8664

bundle.jsonD12-May-20241,007 3939

common.gypiD12-May-202418.7 KiB554530

configureD12-May-2024723 2918

configure.pyD12-May-202462.4 KiB1,8221,383

glossary.mdD12-May-2024890 1715

node.gypD12-May-202445.8 KiB1,4871,443

node.gypiD12-May-202410.5 KiB376365

onboarding.mdD12-May-202412.9 KiB258224

vcbuild.batD12-May-202429.8 KiB765682

README.OpenSource

1[
2  {
3    "Name": "node",
4    "License": "ISC License,Public Domain,MIT License,Free Software Foundation - MIT License,Apache License V2.0,ICU License,zlib/libpng License,BSD 2-Clause License,BSD 3-Clause License",
5    "License File": "LICENSE",
6    "Version Number": "12.21.0",
7    "Owner": "sunbingxin@huawei.com",
8    "Upstream URL": "http://www.nodejs.org/",
9    "Description": "Node.js is an open-source, cross-platform, JavaScript runtime environment. It executes JavaScript code outside of a browser."
10  }
11]
12

README.md

1<!--lint disable no-literal-urls-->
2<p align="center">
3  <a href="https://nodejs.org/">
4    <img
5      alt="Node.js"
6      src="https://nodejs.org/static/images/logo-light.svg"
7      width="400"
8    />
9  </a>
10</p>
11
12Node.js is an open-source, cross-platform, JavaScript runtime environment. It
13executes JavaScript code outside of a browser. For more information on using
14Node.js, see the [Node.js Website][].
15
16The Node.js project uses an [open governance model](./GOVERNANCE.md). The
17[OpenJS Foundation][] provides support for the project.
18
19**This project is bound by a [Code of Conduct][].**
20
21# Table of Contents
22
23* [Support](#support)
24* [Release Types](#release-types)
25  * [Download](#download)
26    * [Current and LTS Releases](#current-and-lts-releases)
27    * [Nightly Releases](#nightly-releases)
28    * [API Documentation](#api-documentation)
29  * [Verifying Binaries](#verifying-binaries)
30* [Building Node.js](#building-nodejs)
31* [Security](#security)
32* [Contributing to Node.js](#contributing-to-nodejs)
33* [Current Project Team Members](#current-project-team-members)
34  * [TSC (Technical Steering Committee)](#tsc-technical-steering-committee)
35  * [Collaborators](#collaborators)
36  * [Release Keys](#release-keys)
37
38## Support
39
40Looking for help? Check out the
41[instructions for getting support](.github/SUPPORT.md).
42
43## Release Types
44
45* **Current**: Under active development. Code for the Current release is in the
46  branch for its major version number (for example,
47  [v10.x](https://github.com/nodejs/node/tree/v10.x)). Node.js releases a new
48  major version every 6 months, allowing for breaking changes. This happens in
49  April and October every year. Releases appearing each October have a support
50  life of 8 months. Releases appearing each April convert to LTS (see below)
51  each October.
52* **LTS**: Releases that receive Long-term Support, with a focus on stability
53  and security. Every even-numbered major version will become an LTS release.
54  LTS releases receive 12 months of _Active LTS_ support and a further 18 months
55  of _Maintenance_. LTS release lines have alphabetically-ordered codenames,
56  beginning with v4 Argon. There are no breaking changes or feature additions,
57  except in some special circumstances.
58* **Nightly**: Code from the Current branch built every 24-hours when there are
59  changes. Use with caution.
60
61Current and LTS releases follow [Semantic Versioning](https://semver.org). A
62member of the Release Team [signs](#release-keys) each Current and LTS release.
63For more information, see the
64[Release README](https://github.com/nodejs/Release#readme).
65
66### Download
67
68Binaries, installers, and source tarballs are available at
69<https://nodejs.org/en/download/>.
70
71#### Current and LTS Releases
72<https://nodejs.org/download/release/>
73
74The [latest](https://nodejs.org/download/release/latest/) directory is an
75alias for the latest Current release. The latest-_codename_ directory is an
76alias for the latest release from an LTS line. For example, the
77[latest-carbon](https://nodejs.org/download/release/latest-carbon/) directory
78contains the latest Carbon (Node.js 8) release.
79
80#### Nightly Releases
81<https://nodejs.org/download/nightly/>
82
83Each directory name and filename contains a date (in UTC) and the commit
84SHA at the HEAD of the release.
85
86#### API Documentation
87
88Documentation for the latest Current release is at <https://nodejs.org/api/>.
89Version-specific documentation is available in each release directory in the
90_docs_ subdirectory. Version-specific documentation is also at
91<https://nodejs.org/download/docs/>.
92
93### Verifying Binaries
94
95Download directories contain a `SHASUMS256.txt` file with SHA checksums for the
96files.
97
98To download `SHASUMS256.txt` using `curl`:
99
100```console
101$ curl -O https://nodejs.org/dist/vx.y.z/SHASUMS256.txt
102```
103
104To check that a downloaded file matches the checksum, run
105it through `sha256sum` with a command such as:
106
107```console
108$ grep node-vx.y.z.tar.gz SHASUMS256.txt | sha256sum -c -
109```
110
111For Current and LTS, the GPG detached signature of `SHASUMS256.txt` is in
112`SHASUMS256.txt.sig`. You can use it with `gpg` to verify the integrity of
113`SHASUM256.txt`. You will first need to import
114[the GPG keys of individuals authorized to create releases](#release-keys). To
115import the keys:
116
117```console
118$ gpg --keyserver pool.sks-keyservers.net --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
119```
120
121See the bottom of this README for a full script to import active release keys.
122
123Next, download the `SHASUMS256.txt.sig` for the release:
124
125```console
126$ curl -O https://nodejs.org/dist/vx.y.z/SHASUMS256.txt.sig
127```
128
129Then use `gpg --verify SHASUMS256.txt.sig SHASUMS256.txt` to verify
130the file's signature.
131
132## Building Node.js
133
134See [BUILDING.md](BUILDING.md) for instructions on how to build Node.js from
135source and a list of supported platforms.
136
137## Security
138
139For information on reporting security vulnerabilities in Node.js, see
140[SECURITY.md](./SECURITY.md).
141
142## Contributing to Node.js
143
144* [Contributing to the project][]
145* [Working Groups][]
146* [Strategic Initiatives][]
147* [Technical values and prioritization][]
148
149## Current Project Team Members
150
151For information about the governance of the Node.js project, see
152[GOVERNANCE.md](./GOVERNANCE.md).
153
154### TSC (Technical Steering Committee)
155
156<!--lint disable prohibited-strings-->
157* [apapirovski](https://github.com/apapirovski) -
158**Anatoli Papirovski** &lt;apapirovski@mac.com&gt; (he/him)
159* [BethGriggs](https://github.com/BethGriggs) -
160**Beth Griggs** &lt;bgriggs@redhat.com&gt; (she/her)
161* [BridgeAR](https://github.com/BridgeAR) -
162**Ruben Bridgewater** &lt;ruben@bridgewater.de&gt; (he/him)
163* [ChALkeR](https://github.com/ChALkeR) -
164**Сковорода Никита Андреевич** &lt;chalkerx@gmail.com&gt; (he/him)
165* [cjihrig](https://github.com/cjihrig) -
166**Colin Ihrig** &lt;cjihrig@gmail.com&gt; (he/him)
167* [codebytere](https://github.com/codebytere) -
168**Shelley Vohr** &lt;codebytere@gmail.com&gt; (she/her)
169* [danbev](https://github.com/danbev) -
170**Daniel Bevenius** &lt;daniel.bevenius@gmail.com&gt; (he/him)
171* [fhinkel](https://github.com/fhinkel) -
172**Franziska Hinkelmann** &lt;franziska.hinkelmann@gmail.com&gt; (she/her)
173* [gabrielschulhof](https://github.com/gabrielschulhof) -
174**Gabriel Schulhof** &lt;gabriel.schulhof@intel.com&gt;
175* [gireeshpunathil](https://github.com/gireeshpunathil) -
176**Gireesh Punathil** &lt;gpunathi@in.ibm.com&gt; (he/him)
177* [jasnell](https://github.com/jasnell) -
178**James M Snell** &lt;jasnell@gmail.com&gt; (he/him)
179* [joyeecheung](https://github.com/joyeecheung) -
180**Joyee Cheung** &lt;joyeec9h3@gmail.com&gt; (she/her)
181* [mcollina](https://github.com/mcollina) -
182**Matteo Collina** &lt;matteo.collina@gmail.com&gt; (he/him)
183* [mhdawson](https://github.com/mhdawson) -
184**Michael Dawson** &lt;midawson@redhat.com&gt; (he/him)
185* [mmarchini](https://github.com/mmarchini) -
186**Mary Marchini** &lt;oss@mmarchini.me&gt; (she/her)
187* [MylesBorins](https://github.com/MylesBorins) -
188**Myles Borins** &lt;myles.borins@gmail.com&gt; (he/him)
189* [targos](https://github.com/targos) -
190**Michaël Zasso** &lt;targos@protonmail.com&gt; (he/him)
191* [tniessen](https://github.com/tniessen) -
192**Tobias Nießen** &lt;tniessen@tnie.de&gt;
193* [Trott](https://github.com/Trott) -
194**Rich Trott** &lt;rtrott@gmail.com&gt; (he/him)
195
196### TSC Emeriti
197
198* [addaleax](https://github.com/addaleax) -
199**Anna Henningsen** &lt;anna@addaleax.net&gt; (she/her)
200* [bnoordhuis](https://github.com/bnoordhuis) -
201**Ben Noordhuis** &lt;info@bnoordhuis.nl&gt;
202* [chrisdickinson](https://github.com/chrisdickinson) -
203**Chris Dickinson** &lt;christopher.s.dickinson@gmail.com&gt;
204* [evanlucas](https://github.com/evanlucas) -
205**Evan Lucas** &lt;evanlucas@me.com&gt; (he/him)
206* [Fishrock123](https://github.com/Fishrock123) -
207**Jeremiah Senkpiel** &lt;fishrock123@rocketmail.com&gt; (he/they)
208* [gibfahn](https://github.com/gibfahn) -
209**Gibson Fahnestock** &lt;gibfahn@gmail.com&gt; (he/him)
210* [indutny](https://github.com/indutny) -
211**Fedor Indutny** &lt;fedor.indutny@gmail.com&gt;
212* [isaacs](https://github.com/isaacs) -
213**Isaac Z. Schlueter** &lt;i@izs.me&gt;
214* [joshgav](https://github.com/joshgav) -
215**Josh Gavant** &lt;josh.gavant@outlook.com&gt;
216* [mscdex](https://github.com/mscdex) -
217**Brian White** &lt;mscdex@mscdex.net&gt;
218* [nebrius](https://github.com/nebrius) -
219**Bryan Hughes** &lt;bryan@nebri.us&gt;
220* [ofrobots](https://github.com/ofrobots) -
221**Ali Ijaz Sheikh** &lt;ofrobots@google.com&gt; (he/him)
222* [orangemocha](https://github.com/orangemocha) -
223**Alexis Campailla** &lt;orangemocha@nodejs.org&gt;
224* [piscisaureus](https://github.com/piscisaureus) -
225**Bert Belder** &lt;bertbelder@gmail.com&gt;
226* [rvagg](https://github.com/rvagg) -
227**Rod Vagg** &lt;r@va.gg&gt;
228* [sam-github](https://github.com/sam-github) -
229**Sam Roberts** &lt;vieuxtech@gmail.com&gt;
230* [shigeki](https://github.com/shigeki) -
231**Shigeki Ohtsu** &lt;ohtsu@ohtsu.org&gt; (he/him)
232* [thefourtheye](https://github.com/thefourtheye) -
233**Sakthipriyan Vairamani** &lt;thechargingvolcano@gmail.com&gt; (he/him)
234* [TimothyGu](https://github.com/TimothyGu) -
235**Tiancheng "Timothy" Gu** &lt;timothygu99@gmail.com&gt; (he/him)
236* [trevnorris](https://github.com/trevnorris) -
237**Trevor Norris** &lt;trev.norris@gmail.com&gt;
238
239### Collaborators
240
241* [addaleax](https://github.com/addaleax) -
242**Anna Henningsen** &lt;anna@addaleax.net&gt; (she/her)
243* [aduh95](https://github.com/aduh95) -
244**Antoine du Hamel** &lt;duhamelantoine1995@gmail.com&gt; (he/him)
245* [ak239](https://github.com/ak239) -
246**Aleksei Koziatinskii** &lt;ak239spb@gmail.com&gt;
247* [AndreasMadsen](https://github.com/AndreasMadsen) -
248**Andreas Madsen** &lt;amwebdk@gmail.com&gt; (he/him)
249* [antsmartian](https://github.com/antsmartian) -
250**Anto Aravinth** &lt;anto.aravinth.cse@gmail.com&gt; (he/him)
251* [apapirovski](https://github.com/apapirovski) -
252**Anatoli Papirovski** &lt;apapirovski@mac.com&gt; (he/him)
253* [AshCripps](https://github.com/AshCripps) -
254**Ash Cripps** &lt;acripps@redhat.com&gt;
255* [bcoe](https://github.com/bcoe) -
256**Ben Coe** &lt;bencoe@gmail.com&gt; (he/him)
257* [bengl](https://github.com/bengl) -
258**Bryan English** &lt;bryan@bryanenglish.com&gt; (he/him)
259* [benjamingr](https://github.com/benjamingr) -
260**Benjamin Gruenbaum** &lt;benjamingr@gmail.com&gt;
261* [BethGriggs](https://github.com/BethGriggs) -
262**Beth Griggs** &lt;bgriggs@redhat.com&gt; (she/her)
263* [bmeck](https://github.com/bmeck) -
264**Bradley Farias** &lt;bradley.meck@gmail.com&gt;
265* [bmeurer](https://github.com/bmeurer) -
266**Benedikt Meurer** &lt;benedikt.meurer@gmail.com&gt;
267* [bnoordhuis](https://github.com/bnoordhuis) -
268**Ben Noordhuis** &lt;info@bnoordhuis.nl&gt;
269* [boneskull](https://github.com/boneskull) -
270**Christopher Hiller** &lt;boneskull@boneskull.com&gt; (he/him)
271* [BridgeAR](https://github.com/BridgeAR) -
272**Ruben Bridgewater** &lt;ruben@bridgewater.de&gt; (he/him)
273* [bzoz](https://github.com/bzoz) -
274**Bartosz Sosnowski** &lt;bartosz@janeasystems.com&gt;
275* [cclauss](https://github.com/cclauss) -
276**Christian Clauss** &lt;cclauss@me.com&gt; (he/him)
277* [ChALkeR](https://github.com/ChALkeR) -
278**Сковорода Никита Андреевич** &lt;chalkerx@gmail.com&gt; (he/him)
279* [cjihrig](https://github.com/cjihrig) -
280**Colin Ihrig** &lt;cjihrig@gmail.com&gt; (he/him)
281* [codebytere](https://github.com/codebytere) -
282**Shelley Vohr** &lt;codebytere@gmail.com&gt; (she/her)
283* [danbev](https://github.com/danbev) -
284**Daniel Bevenius** &lt;daniel.bevenius@gmail.com&gt; (he/him)
285* [danielleadams](https://github.com/danielleadams) -
286**Danielle Adams** &lt;adamzdanielle@gmail.com&gt; (she/her)
287* [davisjam](https://github.com/davisjam) -
288**Jamie Davis** &lt;davisjam@vt.edu&gt; (he/him)
289* [DerekNonGeneric](https://github.com/DerekNonGeneric) -
290**Derek Lewis** &lt;DerekNonGeneric@inf.is&gt; (he/him)
291* [devnexen](https://github.com/devnexen) -
292**David Carlier** &lt;devnexen@gmail.com&gt;
293* [devsnek](https://github.com/devsnek) -
294**Gus Caplan** &lt;me@gus.host&gt; (they/them)
295* [edsadr](https://github.com/edsadr) -
296**Adrian Estrada** &lt;edsadr@gmail.com&gt; (he/him)
297* [eugeneo](https://github.com/eugeneo) -
298**Eugene Ostroukhov** &lt;eostroukhov@google.com&gt;
299* [evanlucas](https://github.com/evanlucas) -
300**Evan Lucas** &lt;evanlucas@me.com&gt; (he/him)
301* [fhinkel](https://github.com/fhinkel) -
302**Franziska Hinkelmann** &lt;franziska.hinkelmann@gmail.com&gt; (she/her)
303* [Fishrock123](https://github.com/Fishrock123) -
304**Jeremiah Senkpiel** &lt;fishrock123@rocketmail.com&gt;  (he/they)
305* [Flarna](https://github.com/Flarna) -
306**Gerhard Stöbich** &lt;deb2001-github@yahoo.de&gt;  (he/they)
307* [gabrielschulhof](https://github.com/gabrielschulhof) -
308**Gabriel Schulhof** &lt;gabriel.schulhof@intel.com&gt;
309* [gdams](https://github.com/gdams) -
310**George Adams** &lt;george.adams@uk.ibm.com&gt; (he/him)
311* [geek](https://github.com/geek) -
312**Wyatt Preul** &lt;wpreul@gmail.com&gt;
313* [gengjiawen](https://github.com/gengjiawen) -
314**Jiawen Geng** &lt;technicalcute@gmail.com&gt;
315* [GeoffreyBooth](https://github.com/geoffreybooth) -
316**Geoffrey Booth** &lt;webmaster@geoffreybooth.com&gt; (he/him)
317* [gireeshpunathil](https://github.com/gireeshpunathil) -
318**Gireesh Punathil** &lt;gpunathi@in.ibm.com&gt; (he/him)
319* [guybedford](https://github.com/guybedford) -
320**Guy Bedford** &lt;guybedford@gmail.com&gt; (he/him)
321* [HarshithaKP](https://github.com/HarshithaKP) -
322**Harshitha K P** &lt;harshitha014@gmail.com&gt; (she/her)
323* [hashseed](https://github.com/hashseed) -
324**Yang Guo** &lt;yangguo@chromium.org&gt; (he/him)
325* [himself65](https://github.com/himself65) -
326**Zeyu Yang** &lt;himself65@outlook.com&gt; (he/him)
327* [hiroppy](https://github.com/hiroppy) -
328**Yuta Hiroto** &lt;hello@hiroppy.me&gt; (he/him)
329* [indutny](https://github.com/indutny) -
330**Fedor Indutny** &lt;fedor.indutny@gmail.com&gt;
331* [JacksonTian](https://github.com/JacksonTian) -
332**Jackson Tian** &lt;shyvo1987@gmail.com&gt;
333* [jasnell](https://github.com/jasnell) -
334**James M Snell** &lt;jasnell@gmail.com&gt; (he/him)
335* [jdalton](https://github.com/jdalton) -
336**John-David Dalton** &lt;john.david.dalton@gmail.com&gt;
337* [jkrems](https://github.com/jkrems) -
338**Jan Krems** &lt;jan.krems@gmail.com&gt; (he/him)
339* [joaocgreis](https://github.com/joaocgreis) -
340**João Reis** &lt;reis@janeasystems.com&gt;
341* [joyeecheung](https://github.com/joyeecheung) -
342**Joyee Cheung** &lt;joyeec9h3@gmail.com&gt; (she/her)
343* [juanarbol](https://github.com/juanarbol) -
344**Juan José Arboleda** &lt;soyjuanarbol@gmail.com&gt; (he/him)
345* [JungMinu](https://github.com/JungMinu) -
346**Minwoo Jung** &lt;nodecorelab@gmail.com&gt; (he/him)
347* [lance](https://github.com/lance) -
348**Lance Ball** &lt;lball@redhat.com&gt; (he/him)
349* [legendecas](https://github.com/legendecas) -
350**Chengzhong Wu** &lt;legendecas@gmail.com&gt; (he/him)
351* [Leko](https://github.com/Leko) -
352**Shingo Inoue** &lt;leko.noor@gmail.com&gt; (he/him)
353* [lpinca](https://github.com/lpinca) -
354**Luigi Pinca** &lt;luigipinca@gmail.com&gt; (he/him)
355* [lundibundi](https://github.com/lundibundi) -
356**Denys Otrishko** &lt;shishugi@gmail.com&gt; (he/him)
357* [mafintosh](https://github.com/mafintosh) -
358**Mathias Buus** &lt;mathiasbuus@gmail.com&gt; (he/him)
359* [mcollina](https://github.com/mcollina) -
360**Matteo Collina** &lt;matteo.collina@gmail.com&gt; (he/him)
361* [mhdawson](https://github.com/mhdawson) -
362**Michael Dawson** &lt;midawson@redhat.com&gt; (he/him)
363* [mildsunrise](https://github.com/mildsunrise) -
364**Alba Mendez** &lt;me@alba.sh&gt; (she/her)
365* [misterdjules](https://github.com/misterdjules) -
366**Julien Gilli** &lt;jgilli@nodejs.org&gt;
367* [mmarchini](https://github.com/mmarchini) -
368**Mary Marchini** &lt;oss@mmarchini.me&gt; (she/her)
369* [mscdex](https://github.com/mscdex) -
370**Brian White** &lt;mscdex@mscdex.net&gt;
371* [MylesBorins](https://github.com/MylesBorins) -
372**Myles Borins** &lt;myles.borins@gmail.com&gt; (he/him)
373* [ofrobots](https://github.com/ofrobots) -
374**Ali Ijaz Sheikh** &lt;ofrobots@google.com&gt; (he/him)
375* [oyyd](https://github.com/oyyd) -
376**Ouyang Yadong** &lt;oyydoibh@gmail.com&gt; (he/him)
377* [psmarshall](https://github.com/psmarshall) -
378**Peter Marshall** &lt;petermarshall@chromium.org&gt; (he/him)
379* [puzpuzpuz](https://github.com/puzpuzpuz) -
380**Andrey Pechkurov** &lt;apechkurov@gmail.com&gt; (he/him)
381* [Qard](https://github.com/Qard) -
382**Stephen Belanger** &lt;admin@stephenbelanger.com&gt; (he/him)
383* [refack](https://github.com/refack) -
384**Refael Ackermann (רפאל פלחי)** &lt;refack@gmail.com&gt; (he/him/הוא/אתה)
385* [rexagod](https://github.com/rexagod) -
386**Pranshu Srivastava** &lt;rexagod@gmail.com&gt; (he/him)
387* [richardlau](https://github.com/richardlau) -
388**Richard Lau** &lt;rlau@redhat.com&gt;
389* [rickyes](https://github.com/rickyes) -
390**Ricky Zhou** &lt;0x19951125@gmail.com&gt; (he/him)
391* [ronag](https://github.com/ronag) -
392**Robert Nagy** &lt;ronagy@icloud.com&gt;
393* [ronkorving](https://github.com/ronkorving) -
394**Ron Korving** &lt;ron@ronkorving.nl&gt;
395* [rubys](https://github.com/rubys) -
396**Sam Ruby** &lt;rubys@intertwingly.net&gt;
397* [ruyadorno](https://github.com/ruyadorno) -
398**Ruy Adorno** &lt;ruyadorno@github.com&gt; (he/him)
399* [rvagg](https://github.com/rvagg) -
400**Rod Vagg** &lt;rod@vagg.org&gt;
401* [ryzokuken](https://github.com/ryzokuken) -
402**Ujjwal Sharma** &lt;ryzokuken@disroot.org&gt; (he/him)
403* [saghul](https://github.com/saghul) -
404**Saúl Ibarra Corretgé** &lt;saghul@gmail.com&gt;
405* [santigimeno](https://github.com/santigimeno) -
406**Santiago Gimeno** &lt;santiago.gimeno@gmail.com&gt;
407* [seishun](https://github.com/seishun) -
408**Nikolai Vavilov** &lt;vvnicholas@gmail.com&gt;
409* [shigeki](https://github.com/shigeki) -
410**Shigeki Ohtsu** &lt;ohtsu@ohtsu.org&gt; (he/him)
411* [shisama](https://github.com/shisama) -
412**Masashi Hirano** &lt;shisama07@gmail.com&gt; (he/him)
413* [silverwind](https://github.com/silverwind) -
414**Roman Reiss** &lt;me@silverwind.io&gt;
415* [srl295](https://github.com/srl295) -
416**Steven R Loomis** &lt;srloomis@us.ibm.com&gt;
417* [starkwang](https://github.com/starkwang) -
418**Weijia Wang** &lt;starkwang@126.com&gt;
419* [sxa](https://github.com/sxa) -
420**Stewart X Addison** &lt;sxa@redhat.com&gt; (he/him)
421* [targos](https://github.com/targos) -
422**Michaël Zasso** &lt;targos@protonmail.com&gt; (he/him)
423* [TimothyGu](https://github.com/TimothyGu) -
424**Tiancheng "Timothy" Gu** &lt;timothygu99@gmail.com&gt; (he/him)
425* [tniessen](https://github.com/tniessen) -
426**Tobias Nießen** &lt;tniessen@tnie.de&gt;
427* [trivikr](https://github.com/trivikr) -
428**Trivikram Kamat** &lt;trivikr.dev@gmail.com&gt;
429* [Trott](https://github.com/Trott) -
430**Rich Trott** &lt;rtrott@gmail.com&gt; (he/him)
431* [vdeturckheim](https://github.com/vdeturckheim) -
432**Vladimir de Turckheim** &lt;vlad2t@hotmail.com&gt; (he/him)
433* [watilde](https://github.com/watilde) -
434**Daijiro Wachi** &lt;daijiro.wachi@gmail.com&gt; (he/him)
435* [watson](https://github.com/watson) -
436**Thomas Watson** &lt;w@tson.dk&gt;
437* [XadillaX](https://github.com/XadillaX) -
438**Khaidi Chu** &lt;i@2333.moe&gt; (he/him)
439* [yhwang](https://github.com/yhwang) -
440**Yihong Wang** &lt;yh.wang@ibm.com&gt;
441* [yorkie](https://github.com/yorkie) -
442**Yorkie Liu** &lt;yorkiefixer@gmail.com&gt;
443* [yosuke-furukawa](https://github.com/yosuke-furukawa) -
444**Yosuke Furukawa** &lt;yosuke.furukawa@gmail.com&gt;
445* [ZYSzys](https://github.com/ZYSzys) -
446**Yongsheng Zhang** &lt;zyszys98@gmail.com&gt; (he/him)
447
448### Collaborator Emeriti
449
450* [andrasq](https://github.com/andrasq) -
451**Andras** &lt;andras@kinvey.com&gt;
452* [AnnaMag](https://github.com/AnnaMag) -
453**Anna M. Kedzierska** &lt;anna.m.kedzierska@gmail.com&gt;
454* [aqrln](https://github.com/aqrln) -
455**Alexey Orlenko** &lt;eaglexrlnk@gmail.com&gt; (he/him)
456* [brendanashworth](https://github.com/brendanashworth) -
457**Brendan Ashworth** &lt;brendan.ashworth@me.com&gt;
458* [calvinmetcalf](https://github.com/calvinmetcalf) -
459**Calvin Metcalf** &lt;calvin.metcalf@gmail.com&gt;
460* [chrisdickinson](https://github.com/chrisdickinson) -
461**Chris Dickinson** &lt;christopher.s.dickinson@gmail.com&gt;
462* [claudiorodriguez](https://github.com/claudiorodriguez) -
463**Claudio Rodriguez** &lt;cjrodr@yahoo.com&gt;
464* [DavidCai1993](https://github.com/DavidCai1993) -
465**David Cai** &lt;davidcai1993@yahoo.com&gt; (he/him)
466* [digitalinfinity](https://github.com/digitalinfinity) -
467**Hitesh Kanwathirtha** &lt;digitalinfinity@gmail.com&gt; (he/him)
468* [eljefedelrodeodeljefe](https://github.com/eljefedelrodeodeljefe) -
469**Robert Jefe Lindstaedt** &lt;robert.lindstaedt@gmail.com&gt;
470* [estliberitas](https://github.com/estliberitas) -
471**Alexander Makarenko** &lt;estliberitas@gmail.com&gt;
472* [firedfox](https://github.com/firedfox) -
473**Daniel Wang** &lt;wangyang0123@gmail.com&gt;
474* [gibfahn](https://github.com/gibfahn) -
475**Gibson Fahnestock** &lt;gibfahn@gmail.com&gt; (he/him)
476* [glentiki](https://github.com/glentiki) -
477**Glen Keane** &lt;glenkeane.94@gmail.com&gt; (he/him)
478* [iarna](https://github.com/iarna) -
479**Rebecca Turner** &lt;me@re-becca.org&gt;
480* [imran-iq](https://github.com/imran-iq) -
481**Imran Iqbal** &lt;imran@imraniqbal.org&gt;
482* [imyller](https://github.com/imyller) -
483**Ilkka Myller** &lt;ilkka.myller@nodefield.com&gt;
484* [isaacs](https://github.com/isaacs) -
485**Isaac Z. Schlueter** &lt;i@izs.me&gt;
486* [italoacasas](https://github.com/italoacasas) -
487**Italo A. Casas** &lt;me@italoacasas.com&gt; (he/him)
488* [jasongin](https://github.com/jasongin) -
489**Jason Ginchereau** &lt;jasongin@microsoft.com&gt;
490* [jbergstroem](https://github.com/jbergstroem) -
491**Johan Bergström** &lt;bugs@bergstroem.nu&gt;
492* [jhamhader](https://github.com/jhamhader) -
493**Yuval Brik** &lt;yuval@brik.org.il&gt;
494* [joshgav](https://github.com/joshgav) -
495**Josh Gavant** &lt;josh.gavant@outlook.com&gt;
496* [julianduque](https://github.com/julianduque) -
497**Julian Duque** &lt;julianduquej@gmail.com&gt; (he/him)
498* [kfarnung](https://github.com/kfarnung) -
499**Kyle Farnung** &lt;kfarnung@microsoft.com&gt; (he/him)
500* [kunalspathak](https://github.com/kunalspathak) -
501**Kunal Pathak** &lt;kunal.pathak@microsoft.com&gt;
502* [lucamaraschi](https://github.com/lucamaraschi) -
503**Luca Maraschi** &lt;luca.maraschi@gmail.com&gt; (he/him)
504* [lxe](https://github.com/lxe) -
505**Aleksey Smolenchuk** &lt;lxe@lxe.co&gt;
506* [maclover7](https://github.com/maclover7) -
507**Jon Moss** &lt;me@jonathanmoss.me&gt; (he/him)
508* [matthewloring](https://github.com/matthewloring) -
509**Matthew Loring** &lt;mattloring@google.com&gt;
510* [micnic](https://github.com/micnic) -
511**Nicu Micleușanu** &lt;micnic90@gmail.com&gt; (he/him)
512* [mikeal](https://github.com/mikeal) -
513**Mikeal Rogers** &lt;mikeal.rogers@gmail.com&gt;
514* [monsanto](https://github.com/monsanto) -
515**Christopher Monsanto** &lt;chris@monsan.to&gt;
516* [MoonBall](https://github.com/MoonBall) -
517**Chen Gang** &lt;gangc.cxy@foxmail.com&gt;
518* [not-an-aardvark](https://github.com/not-an-aardvark) -
519**Teddy Katz** &lt;teddy.katz@gmail.com&gt; (he/him)
520* [Olegas](https://github.com/Olegas) -
521**Oleg Elifantiev** &lt;oleg@elifantiev.ru&gt;
522* [orangemocha](https://github.com/orangemocha) -
523**Alexis Campailla** &lt;orangemocha@nodejs.org&gt;
524* [othiym23](https://github.com/othiym23) -
525**Forrest L Norvell** &lt;ogd@aoaioxxysz.net&gt; (he/him)
526* [petkaantonov](https://github.com/petkaantonov) -
527**Petka Antonov** &lt;petka_antonov@hotmail.com&gt;
528* [phillipj](https://github.com/phillipj) -
529**Phillip Johnsen** &lt;johphi@gmail.com&gt;
530* [piscisaureus](https://github.com/piscisaureus) -
531**Bert Belder** &lt;bertbelder@gmail.com&gt;
532* [pmq20](https://github.com/pmq20) -
533**Minqi Pan** &lt;pmq2001@gmail.com&gt;
534* [princejwesley](https://github.com/princejwesley) -
535**Prince John Wesley** &lt;princejohnwesley@gmail.com&gt;
536* [rlidwka](https://github.com/rlidwka) -
537**Alex Kocharin** &lt;alex@kocharin.ru&gt;
538* [rmg](https://github.com/rmg) -
539**Ryan Graham** &lt;r.m.graham@gmail.com&gt;
540* [robertkowalski](https://github.com/robertkowalski) -
541**Robert Kowalski** &lt;rok@kowalski.gd&gt;
542* [romankl](https://github.com/romankl) -
543**Roman Klauke** &lt;romaaan.git@gmail.com&gt;
544* [RReverser](https://github.com/RReverser) -
545**Ingvar Stepanyan** &lt;me@rreverser.com&gt;
546* [sam-github](https://github.com/sam-github) -
547**Sam Roberts** &lt;vieuxtech@gmail.com&gt;
548* [sebdeckers](https://github.com/sebdeckers) -
549**Sebastiaan Deckers** &lt;sebdeckers83@gmail.com&gt;
550* [stefanmb](https://github.com/stefanmb) -
551**Stefan Budeanu** &lt;stefan@budeanu.com&gt;
552* [tellnes](https://github.com/tellnes) -
553**Christian Tellnes** &lt;christian@tellnes.no&gt;
554* [thefourtheye](https://github.com/thefourtheye) -
555**Sakthipriyan Vairamani** &lt;thechargingvolcano@gmail.com&gt; (he/him)
556* [thlorenz](https://github.com/thlorenz) -
557**Thorsten Lorenz** &lt;thlorenz@gmx.de&gt;
558* [trevnorris](https://github.com/trevnorris) -
559**Trevor Norris** &lt;trev.norris@gmail.com&gt;
560* [tunniclm](https://github.com/tunniclm) -
561**Mike Tunnicliffe** &lt;m.j.tunnicliffe@gmail.com&gt;
562* [vkurchatkin](https://github.com/vkurchatkin) -
563**Vladimir Kurchatkin** &lt;vladimir.kurchatkin@gmail.com&gt;
564* [vsemozhetbyt](https://github.com/vsemozhetbyt) -
565**Vse Mozhet Byt** &lt;vsemozhetbyt@gmail.com&gt; (he/him)
566* [whitlockjc](https://github.com/whitlockjc) -
567**Jeremy Whitlock** &lt;jwhitlock@apache.org&gt;
568<!--lint enable prohibited-strings-->
569
570Collaborators follow the [Collaborator Guide](./doc/guides/collaborator-guide.md) in
571maintaining the Node.js project.
572
573### Triagers
574
575* [PoojaDurgad](https://github.com/PoojaDurgad) -
576**Pooja Durgad** &lt;Pooja.D.P@ibm.com&gt;
577
578### Release Keys
579
580Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
581
582* **Beth Griggs** &lt;bgriggs@redhat.com&gt;
583`4ED778F539E3634C779C87C6D7062848A1AB005C`
584* **Colin Ihrig** &lt;cjihrig@gmail.com&gt;
585`94AE36675C464D64BAFA68DD7434390BDBE9B9C5`
586* **James M Snell** &lt;jasnell@keybase.io&gt;
587`71DCFD284A79C3B38668286BC97EC7A07EDE3FC1`
588* **Michaël Zasso** &lt;targos@protonmail.com&gt;
589`8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600`
590* **Myles Borins** &lt;myles.borins@gmail.com&gt;
591`C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8`
592* **Richard Lau** &lt;rlau@redhat.com&gt;
593`C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C`
594* **Rod Vagg** &lt;rod@vagg.org&gt;
595`DD8F2338BAE7501E3DD5AC78C273792F7D83545D`
596* **Ruben Bridgewater** &lt;ruben@bridgewater.de&gt;
597`A48C2BEE680E841632CD4E44F07496B3EB3C1762`
598* **Ruy Adorno** &lt;ruyadorno@hotmail.com&gt;
599`108F52B48DB57BB0CC439B2997B01419BD92F80A`
600* **Shelley Vohr** &lt;shelley.vohr@gmail.com&gt;
601`B9E2F5981AA6E0CD28160D9FF13993A75599653C`
602
603To import the full set of trusted release keys:
604
605```bash
606gpg --keyserver pool.sks-keyservers.net --recv-keys 4ED778F539E3634C779C87C6D7062848A1AB005C
607gpg --keyserver pool.sks-keyservers.net --recv-keys 94AE36675C464D64BAFA68DD7434390BDBE9B9C5
608gpg --keyserver pool.sks-keyservers.net --recv-keys 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1
609gpg --keyserver pool.sks-keyservers.net --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600
610gpg --keyserver pool.sks-keyservers.net --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8
611gpg --keyserver pool.sks-keyservers.net --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C
612gpg --keyserver pool.sks-keyservers.net --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
613gpg --keyserver pool.sks-keyservers.net --recv-keys A48C2BEE680E841632CD4E44F07496B3EB3C1762
614gpg --keyserver pool.sks-keyservers.net --recv-keys 108F52B48DB57BB0CC439B2997B01419BD92F80A
615gpg --keyserver pool.sks-keyservers.net --recv-keys B9E2F5981AA6E0CD28160D9FF13993A75599653C
616```
617
618See the section above on [Verifying Binaries](#verifying-binaries) for how to
619use these keys to verify a downloaded file.
620
621Other keys used to sign some previous releases:
622
623* **Chris Dickinson** &lt;christopher.s.dickinson@gmail.com&gt;
624`9554F04D7259F04124DE6B476D5A82AC7E37093B`
625* **Evan Lucas** &lt;evanlucas@me.com&gt;
626`B9AE9905FFD7803F25714661B63B535A4C206CA9`
627* **Gibson Fahnestock** &lt;gibfahn@gmail.com&gt;
628`77984A986EBC2AA786BC0F66B01FBB92821C587A`
629* **Isaac Z. Schlueter** &lt;i@izs.me&gt;
630`93C7E9E91B49E432C2F75674B0A78B0A6C481CF6`
631* **Italo A. Casas** &lt;me@italoacasas.com&gt;
632`56730D5401028683275BD23C23EFEFE93C4CFFFE`
633* **Jeremiah Senkpiel** &lt;fishrock@keybase.io&gt;
634`FD3A5288F042B6850C66B31F09FE44734EB7990E`
635* **Julien Gilli** &lt;jgilli@fastmail.fm&gt;
636`114F43EE0176B71C7BC219DD50A3051F888C628D`
637* **Timothy J Fontaine** &lt;tjfontaine@gmail.com&gt;
638`7937DFD2AB06298B2293C3187D33FF9D0246406D`
639
640[Code of Conduct]: https://github.com/nodejs/admin/blob/master/CODE_OF_CONDUCT.md
641[Contributing to the project]: CONTRIBUTING.md
642[Node.js Website]: https://nodejs.org/
643[OpenJS Foundation]: https://openjsf.org/
644[Strategic Initiatives]: https://github.com/nodejs/TSC/blob/master/Strategic-Initiatives.md
645[Technical values and prioritization]: doc/guides/technical-values.md
646[Working Groups]: https://github.com/nodejs/TSC/blob/master/WORKING_GROUPS.md
647