• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

benchmark/H03-May-2022-918746

deps/H06-Apr-2021-5,367,0094,469,900

doc/H03-May-2022-205,000189,418

lib/internal/H03-May-2022-75

src/H06-Apr-2021-80,93460,506

test/H06-Apr-2021-16,64013,272

tools/H03-May-2022-78,56461,354

.clang-formatH A D06-Apr-20213.1 KiB112111

.nycrcH A D06-Apr-2021119 87

.travis.ymlH A D06-Apr-2021911 3534

AUTHORSH A D06-Apr-202185.6 KiB2,3222,319

BSDmakefileH A D06-Apr-2021263 129

BUILDING.mdH A D06-Apr-202117.1 KiB528384

CHANGELOG.mdH A D06-Apr-202151.7 KiB1,377743

CODE_OF_CONDUCT.mdH A D06-Apr-2021207 53

COLLABORATOR_GUIDE.mdH A D06-Apr-202135.5 KiB786611

CONTRIBUTING.mdH A D06-Apr-20212.7 KiB5944

CPP_STYLE_GUIDE.mdH A D06-Apr-202112.6 KiB402306

GOVERNANCE.mdH A D06-Apr-20218.5 KiB206157

LICENSEH A D06-Apr-202167.2 KiB1,3591,151

MakefileH A D06-Apr-202142.9 KiB1,2981,012

README.mdH A D06-Apr-202126.7 KiB618553

SECURITY.mdH A D06-Apr-20211.6 KiB3827

android-configureH A D06-Apr-20211.9 KiB8063

common.gypiH A D03-May-202217.9 KiB534520

configureH A D06-Apr-2021790 2918

configure.pyH A D06-Apr-202157.9 KiB1,7011,289

node.gypH A D06-Apr-202132.4 KiB1,013996

node.gypiH A D03-May-202210.6 KiB372359

vcbuild.batH A D06-Apr-202129.3 KiB734649

README.md

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