2020-04-23 02:50:49 +00:00
|
|
|
<!--lint disable no-literal-urls-->
|
2017-03-31 17:07:40 +00:00
|
|
|
<p align="center">
|
2017-04-10 16:13:20 +00:00
|
|
|
<a href="https://nodejs.org/">
|
2018-02-12 07:31:55 +00:00
|
|
|
<img
|
|
|
|
alt="Node.js"
|
|
|
|
src="https://nodejs.org/static/images/logo-light.svg"
|
|
|
|
width="400"
|
|
|
|
/>
|
2017-04-10 16:13:20 +00:00
|
|
|
</a>
|
2017-03-31 17:07:40 +00:00
|
|
|
</p>
|
2011-01-24 04:52:37 +00:00
|
|
|
|
2020-01-09 00:52:33 +00:00
|
|
|
Node.js is an open-source, cross-platform, JavaScript runtime environment. It
|
|
|
|
executes JavaScript code outside of a browser. For more information on using
|
|
|
|
Node.js, see the [Node.js Website][].
|
2015-12-07 05:29:24 +00:00
|
|
|
|
2018-09-25 04:54:13 +00:00
|
|
|
The Node.js project uses an [open governance model](./GOVERNANCE.md). The
|
2019-06-07 12:12:34 +00:00
|
|
|
[OpenJS Foundation][] provides support for the project.
|
2017-03-31 14:21:32 +00:00
|
|
|
|
|
|
|
**This project is bound by a [Code of Conduct][].**
|
2014-12-02 02:06:21 +00:00
|
|
|
|
2017-03-01 14:45:01 +00:00
|
|
|
# Table of Contents
|
|
|
|
|
2017-10-26 23:14:35 +00:00
|
|
|
* [Support](#support)
|
2017-03-01 14:45:01 +00:00
|
|
|
* [Release Types](#release-types)
|
|
|
|
* [Download](#download)
|
|
|
|
* [Current and LTS Releases](#current-and-lts-releases)
|
|
|
|
* [Nightly Releases](#nightly-releases)
|
|
|
|
* [API Documentation](#api-documentation)
|
|
|
|
* [Verifying Binaries](#verifying-binaries)
|
|
|
|
* [Building Node.js](#building-nodejs)
|
2017-11-17 22:07:01 +00:00
|
|
|
* [Security](#security)
|
2019-05-22 03:19:00 +00:00
|
|
|
* [Contributing to Node.js](#contributing-to-nodejs)
|
2017-11-17 22:07:01 +00:00
|
|
|
* [Current Project Team Members](#current-project-team-members)
|
|
|
|
* [TSC (Technical Steering Committee)](#tsc-technical-steering-committee)
|
|
|
|
* [Collaborators](#collaborators)
|
2018-10-27 19:37:12 +00:00
|
|
|
* [Release Keys](#release-keys)
|
2017-03-01 14:45:01 +00:00
|
|
|
|
2017-10-26 23:14:35 +00:00
|
|
|
## Support
|
|
|
|
|
2019-05-27 16:20:01 +00:00
|
|
|
Looking for help? Check out the
|
|
|
|
[instructions for getting support](.github/SUPPORT.md).
|
2016-05-10 21:46:12 +00:00
|
|
|
|
2018-11-26 02:35:51 +00:00
|
|
|
## Release Types
|
2018-10-01 05:52:19 +00:00
|
|
|
|
|
|
|
* **Current**: Under active development. Code for the Current release is in the
|
|
|
|
branch for its major version number (for example,
|
|
|
|
[v10.x](https://github.com/nodejs/node/tree/v10.x)). Node.js releases a new
|
|
|
|
major version every 6 months, allowing for breaking changes. This happens in
|
|
|
|
April and October every year. Releases appearing each October have a support
|
|
|
|
life of 8 months. Releases appearing each April convert to LTS (see below)
|
|
|
|
each October.
|
2015-10-22 04:47:36 +00:00
|
|
|
* **LTS**: Releases that receive Long-term Support, with a focus on stability
|
2018-10-01 05:52:19 +00:00
|
|
|
and security. Every even-numbered major version will become an LTS release.
|
2019-11-28 20:55:25 +00:00
|
|
|
LTS releases receive 12 months of _Active LTS_ support and a further 18 months
|
2018-10-01 05:52:19 +00:00
|
|
|
of _Maintenance_. LTS release lines have alphabetically-ordered codenames,
|
|
|
|
beginning with v4 Argon. There are no breaking changes or feature additions,
|
|
|
|
except in some special circumstances.
|
|
|
|
* **Nightly**: Code from the Current branch built every 24-hours when there are
|
|
|
|
changes. Use with caution.
|
|
|
|
|
|
|
|
Current and LTS releases follow [Semantic Versioning](https://semver.org). A
|
2018-10-27 19:37:12 +00:00
|
|
|
member of the Release Team [signs](#release-keys) each Current and LTS release.
|
2018-10-01 05:52:19 +00:00
|
|
|
For more information, see the
|
2018-12-02 11:14:08 +00:00
|
|
|
[Release README](https://github.com/nodejs/Release#readme).
|
2017-07-16 01:41:05 +00:00
|
|
|
|
2017-11-17 22:07:01 +00:00
|
|
|
### Download
|
2015-01-31 10:55:37 +00:00
|
|
|
|
2015-02-15 00:52:30 +00:00
|
|
|
Binaries, installers, and source tarballs are available at
|
2018-09-25 16:29:38 +00:00
|
|
|
<https://nodejs.org/en/download/>.
|
2015-01-31 10:55:37 +00:00
|
|
|
|
2017-03-01 14:45:01 +00:00
|
|
|
#### Current and LTS Releases
|
2018-10-02 04:38:59 +00:00
|
|
|
<https://nodejs.org/download/release/>
|
|
|
|
|
2015-10-22 04:47:36 +00:00
|
|
|
The [latest](https://nodejs.org/download/release/latest/) directory is an
|
2018-10-02 04:38:59 +00:00
|
|
|
alias for the latest Current release. The latest-_codename_ directory is an
|
2018-10-08 05:20:26 +00:00
|
|
|
alias for the latest release from an LTS line. For example, the
|
|
|
|
[latest-carbon](https://nodejs.org/download/release/latest-carbon/) directory
|
|
|
|
contains the latest Carbon (Node.js 8) release.
|
2015-01-31 10:55:37 +00:00
|
|
|
|
2017-03-01 14:45:01 +00:00
|
|
|
#### Nightly Releases
|
2018-10-02 04:38:59 +00:00
|
|
|
<https://nodejs.org/download/nightly/>
|
|
|
|
|
2020-04-22 16:46:56 +00:00
|
|
|
Each directory name and filename contains a date (in UTC) and the commit
|
2018-10-08 05:20:26 +00:00
|
|
|
SHA at the HEAD of the release.
|
2015-01-31 10:55:37 +00:00
|
|
|
|
2017-03-01 14:45:01 +00:00
|
|
|
#### API Documentation
|
2018-10-02 04:38:59 +00:00
|
|
|
|
2018-10-04 20:44:03 +00:00
|
|
|
Documentation for the latest Current release is at <https://nodejs.org/api/>.
|
|
|
|
Version-specific documentation is available in each release directory in the
|
|
|
|
_docs_ subdirectory. Version-specific documentation is also at
|
|
|
|
<https://nodejs.org/download/docs/>.
|
2018-10-02 04:38:59 +00:00
|
|
|
|
2015-01-31 10:55:37 +00:00
|
|
|
### Verifying Binaries
|
|
|
|
|
2018-10-06 22:28:14 +00:00
|
|
|
Download directories contain a `SHASUMS256.txt` file with SHA checksums for the
|
2018-10-03 21:14:19 +00:00
|
|
|
files.
|
2016-04-08 18:08:23 +00:00
|
|
|
|
2018-10-06 22:28:14 +00:00
|
|
|
To download `SHASUMS256.txt` using `curl`:
|
2016-04-08 18:08:23 +00:00
|
|
|
|
2016-08-03 23:32:05 +00:00
|
|
|
```console
|
2016-04-08 18:08:23 +00:00
|
|
|
$ curl -O https://nodejs.org/dist/vx.y.z/SHASUMS256.txt
|
|
|
|
```
|
|
|
|
|
|
|
|
To check that a downloaded file matches the checksum, run
|
2015-01-31 10:55:37 +00:00
|
|
|
it through `sha256sum` with a command such as:
|
|
|
|
|
2016-08-03 23:32:05 +00:00
|
|
|
```console
|
2015-08-13 16:14:34 +00:00
|
|
|
$ grep node-vx.y.z.tar.gz SHASUMS256.txt | sha256sum -c -
|
2015-01-31 10:55:37 +00:00
|
|
|
```
|
|
|
|
|
2018-10-06 22:28:14 +00:00
|
|
|
For Current and LTS, the GPG detached signature of `SHASUMS256.txt` is in
|
|
|
|
`SHASUMS256.txt.sig`. You can use it with `gpg` to verify the integrity of
|
2018-10-27 19:37:12 +00:00
|
|
|
`SHASUM256.txt`. You will first need to import
|
|
|
|
[the GPG keys of individuals authorized to create releases](#release-keys). To
|
|
|
|
import the keys:
|
2015-01-31 10:55:37 +00:00
|
|
|
|
2016-08-03 23:32:05 +00:00
|
|
|
```console
|
|
|
|
$ gpg --keyserver pool.sks-keyservers.net --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
|
2015-01-31 10:55:37 +00:00
|
|
|
```
|
|
|
|
|
2017-12-07 05:11:44 +00:00
|
|
|
See the bottom of this README for a full script to import active release keys.
|
2015-01-31 10:55:37 +00:00
|
|
|
|
2018-10-06 22:28:14 +00:00
|
|
|
Next, download the `SHASUMS256.txt.sig` for the release:
|
2015-01-31 10:55:37 +00:00
|
|
|
|
2017-08-31 00:05:39 +00:00
|
|
|
```console
|
|
|
|
$ curl -O https://nodejs.org/dist/vx.y.z/SHASUMS256.txt.sig
|
|
|
|
```
|
|
|
|
|
2018-10-03 21:14:19 +00:00
|
|
|
Then use `gpg --verify SHASUMS256.txt.sig SHASUMS256.txt` to verify
|
|
|
|
the file's signature.
|
2015-01-31 10:55:37 +00:00
|
|
|
|
2016-03-09 23:41:52 +00:00
|
|
|
## Building Node.js
|
2015-01-02 11:52:50 +00:00
|
|
|
|
2018-10-08 16:24:37 +00:00
|
|
|
See [BUILDING.md](BUILDING.md) for instructions on how to build Node.js from
|
|
|
|
source and a list of supported platforms.
|
2011-08-26 22:04:47 +00:00
|
|
|
|
2015-06-11 10:37:37 +00:00
|
|
|
## Security
|
2015-01-02 11:52:50 +00:00
|
|
|
|
2018-11-02 04:24:54 +00:00
|
|
|
For information on reporting security vulnerabilities in Node.js, see
|
|
|
|
[SECURITY.md](./SECURITY.md).
|
2017-07-25 19:52:49 +00:00
|
|
|
|
2019-05-22 03:19:00 +00:00
|
|
|
## Contributing to Node.js
|
|
|
|
|
|
|
|
* [Contributing to the project][]
|
|
|
|
* [Working Groups][]
|
|
|
|
* [Strategic Initiatives][]
|
2020-09-10 15:19:44 +00:00
|
|
|
* [Technical values and prioritization][]
|
2019-05-22 03:19:00 +00:00
|
|
|
|
2015-01-02 11:52:50 +00:00
|
|
|
## Current Project Team Members
|
|
|
|
|
2018-10-17 04:29:02 +00:00
|
|
|
For information about the governance of the Node.js project, see
|
2015-01-02 11:52:50 +00:00
|
|
|
[GOVERNANCE.md](./GOVERNANCE.md).
|
|
|
|
|
2017-08-22 05:44:50 +00:00
|
|
|
### TSC (Technical Steering Committee)
|
2015-05-15 19:51:37 +00:00
|
|
|
|
2020-06-04 04:59:33 +00:00
|
|
|
<!--lint disable prohibited-strings-->
|
2018-09-05 21:35:18 +00:00
|
|
|
* [apapirovski](https://github.com/apapirovski) -
|
|
|
|
**Anatoli Papirovski** <apapirovski@mac.com> (he/him)
|
2019-09-13 13:13:38 +00:00
|
|
|
* [BethGriggs](https://github.com/BethGriggs) -
|
2020-10-01 17:37:28 +00:00
|
|
|
**Beth Griggs** <bgriggs@redhat.com> (she/her)
|
2020-03-11 18:49:06 +00:00
|
|
|
* [BridgeAR](https://github.com/BridgeAR) -
|
|
|
|
**Ruben Bridgewater** <ruben@bridgewater.de> (he/him)
|
2016-08-03 23:32:05 +00:00
|
|
|
* [ChALkeR](https://github.com/ChALkeR) -
|
2017-01-31 18:57:08 +00:00
|
|
|
**Сковорода Никита Андреевич** <chalkerx@gmail.com> (he/him)
|
2016-08-03 23:32:05 +00:00
|
|
|
* [cjihrig](https://github.com/cjihrig) -
|
2018-07-20 02:08:39 +00:00
|
|
|
**Colin Ihrig** <cjihrig@gmail.com> (he/him)
|
2020-03-24 21:55:02 +00:00
|
|
|
* [codebytere](https://github.com/codebytere) -
|
|
|
|
**Shelley Vohr** <codebytere@gmail.com> (she/her)
|
2017-12-13 15:56:19 +00:00
|
|
|
* [danbev](https://github.com/danbev) -
|
2018-09-03 07:11:20 +00:00
|
|
|
**Daniel Bevenius** <daniel.bevenius@gmail.com> (he/him)
|
2017-02-22 00:32:38 +00:00
|
|
|
* [fhinkel](https://github.com/fhinkel) -
|
2017-10-07 21:29:50 +00:00
|
|
|
**Franziska Hinkelmann** <franziska.hinkelmann@gmail.com> (she/her)
|
2018-09-12 12:26:34 +00:00
|
|
|
* [gabrielschulhof](https://github.com/gabrielschulhof) -
|
|
|
|
**Gabriel Schulhof** <gabriel.schulhof@intel.com>
|
2020-03-24 21:55:02 +00:00
|
|
|
* [gireeshpunathil](https://github.com/gireeshpunathil) -
|
|
|
|
**Gireesh Punathil** <gpunathi@in.ibm.com> (he/him)
|
2019-04-25 14:07:47 +00:00
|
|
|
* [jasnell](https://github.com/jasnell) -
|
|
|
|
**James M Snell** <jasnell@gmail.com> (he/him)
|
2017-06-07 22:14:50 +00:00
|
|
|
* [joyeecheung](https://github.com/joyeecheung) -
|
|
|
|
**Joyee Cheung** <joyeec9h3@gmail.com> (she/her)
|
|
|
|
* [mcollina](https://github.com/mcollina) -
|
|
|
|
**Matteo Collina** <matteo.collina@gmail.com> (he/him)
|
2016-08-03 23:32:05 +00:00
|
|
|
* [mhdawson](https://github.com/mhdawson) -
|
2020-09-08 21:40:59 +00:00
|
|
|
**Michael Dawson** <midawson@redhat.com> (he/him)
|
2020-03-24 21:55:02 +00:00
|
|
|
* [mmarchini](https://github.com/mmarchini) -
|
2020-07-31 20:43:38 +00:00
|
|
|
**Mary Marchini** <oss@mmarchini.me> (she/her)
|
2017-01-03 04:29:56 +00:00
|
|
|
* [MylesBorins](https://github.com/MylesBorins) -
|
2017-01-31 18:57:08 +00:00
|
|
|
**Myles Borins** <myles.borins@gmail.com> (he/him)
|
2016-12-21 07:15:56 +00:00
|
|
|
* [targos](https://github.com/targos) -
|
2017-01-31 18:57:08 +00:00
|
|
|
**Michaël Zasso** <targos@protonmail.com> (he/him)
|
2019-09-13 13:28:20 +00:00
|
|
|
* [tniessen](https://github.com/tniessen) -
|
|
|
|
**Tobias Nießen** <tniessen@tnie.de>
|
2019-01-16 14:07:18 +00:00
|
|
|
* [Trott](https://github.com/Trott) -
|
|
|
|
**Rich Trott** <rtrott@gmail.com> (he/him)
|
2015-05-15 19:51:37 +00:00
|
|
|
|
2017-08-22 05:44:50 +00:00
|
|
|
### TSC Emeriti
|
2017-05-26 05:58:04 +00:00
|
|
|
|
2020-08-17 12:37:42 +00:00
|
|
|
* [addaleax](https://github.com/addaleax) -
|
|
|
|
**Anna Henningsen** <anna@addaleax.net> (she/her)
|
2017-09-26 17:28:03 +00:00
|
|
|
* [bnoordhuis](https://github.com/bnoordhuis) -
|
|
|
|
**Ben Noordhuis** <info@bnoordhuis.nl>
|
2017-05-26 05:58:04 +00:00
|
|
|
* [chrisdickinson](https://github.com/chrisdickinson) -
|
|
|
|
**Chris Dickinson** <christopher.s.dickinson@gmail.com>
|
2018-04-11 17:49:36 +00:00
|
|
|
* [evanlucas](https://github.com/evanlucas) -
|
|
|
|
**Evan Lucas** <evanlucas@me.com> (he/him)
|
2020-02-10 18:56:58 +00:00
|
|
|
* [Fishrock123](https://github.com/Fishrock123) -
|
2020-02-10 18:59:27 +00:00
|
|
|
**Jeremiah Senkpiel** <fishrock123@rocketmail.com> (he/they)
|
2018-10-03 08:32:28 +00:00
|
|
|
* [gibfahn](https://github.com/gibfahn) -
|
|
|
|
**Gibson Fahnestock** <gibfahn@gmail.com> (he/him)
|
2018-02-13 07:09:44 +00:00
|
|
|
* [indutny](https://github.com/indutny) -
|
|
|
|
**Fedor Indutny** <fedor.indutny@gmail.com>
|
2017-05-26 05:58:04 +00:00
|
|
|
* [isaacs](https://github.com/isaacs) -
|
|
|
|
**Isaac Z. Schlueter** <i@izs.me>
|
2018-01-02 17:47:19 +00:00
|
|
|
* [joshgav](https://github.com/joshgav) -
|
|
|
|
**Josh Gavant** <josh.gavant@outlook.com>
|
2018-01-31 17:36:51 +00:00
|
|
|
* [mscdex](https://github.com/mscdex) -
|
|
|
|
**Brian White** <mscdex@mscdex.net>
|
2017-10-02 03:43:56 +00:00
|
|
|
* [nebrius](https://github.com/nebrius) -
|
|
|
|
**Bryan Hughes** <bryan@nebri.us>
|
2019-04-03 20:07:42 +00:00
|
|
|
* [ofrobots](https://github.com/ofrobots) -
|
|
|
|
**Ali Ijaz Sheikh** <ofrobots@google.com> (he/him)
|
2017-05-26 05:58:04 +00:00
|
|
|
* [orangemocha](https://github.com/orangemocha) -
|
|
|
|
**Alexis Campailla** <orangemocha@nodejs.org>
|
|
|
|
* [piscisaureus](https://github.com/piscisaureus) -
|
|
|
|
**Bert Belder** <bertbelder@gmail.com>
|
2019-05-09 05:59:04 +00:00
|
|
|
* [rvagg](https://github.com/rvagg) -
|
|
|
|
**Rod Vagg** <r@va.gg>
|
2020-06-28 04:29:58 +00:00
|
|
|
* [sam-github](https://github.com/sam-github) -
|
|
|
|
**Sam Roberts** <vieuxtech@gmail.com>
|
2017-10-14 00:11:52 +00:00
|
|
|
* [shigeki](https://github.com/shigeki) -
|
|
|
|
**Shigeki Ohtsu** <ohtsu@ohtsu.org> (he/him)
|
2020-03-03 06:43:02 +00:00
|
|
|
* [thefourtheye](https://github.com/thefourtheye) -
|
|
|
|
**Sakthipriyan Vairamani** <thechargingvolcano@gmail.com> (he/him)
|
2018-11-20 01:01:24 +00:00
|
|
|
* [TimothyGu](https://github.com/TimothyGu) -
|
|
|
|
**Tiancheng "Timothy" Gu** <timothygu99@gmail.com> (he/him)
|
2018-04-12 19:25:55 +00:00
|
|
|
* [trevnorris](https://github.com/trevnorris) -
|
|
|
|
**Trevor Norris** <trev.norris@gmail.com>
|
2017-05-26 05:58:04 +00:00
|
|
|
|
2015-05-15 19:51:37 +00:00
|
|
|
### Collaborators
|
|
|
|
|
2017-05-29 15:53:30 +00:00
|
|
|
* [addaleax](https://github.com/addaleax) -
|
|
|
|
**Anna Henningsen** <anna@addaleax.net> (she/her)
|
2020-10-07 14:33:17 +00:00
|
|
|
* [aduh95](https://github.com/aduh95) -
|
|
|
|
**Antoine du Hamel** <duhamelantoine1995@gmail.com> (he/him)
|
2016-09-20 23:36:19 +00:00
|
|
|
* [ak239](https://github.com/ak239) -
|
|
|
|
**Aleksei Koziatinskii** <ak239spb@gmail.com>
|
2016-08-03 23:32:05 +00:00
|
|
|
* [AndreasMadsen](https://github.com/AndreasMadsen) -
|
2017-01-31 18:57:08 +00:00
|
|
|
**Andreas Madsen** <amwebdk@gmail.com> (he/him)
|
2018-11-26 11:37:24 +00:00
|
|
|
* [antsmartian](https://github.com/antsmartian) -
|
|
|
|
**Anto Aravinth** <anto.aravinth.cse@gmail.com> (he/him)
|
2017-10-18 18:53:48 +00:00
|
|
|
* [apapirovski](https://github.com/apapirovski) -
|
|
|
|
**Anatoli Papirovski** <apapirovski@mac.com> (he/him)
|
2020-07-23 12:26:22 +00:00
|
|
|
* [AshCripps](https://github.com/AshCripps) -
|
2020-09-10 10:43:09 +00:00
|
|
|
**Ash Cripps** <acripps@redhat.com>
|
2018-06-25 23:03:59 +00:00
|
|
|
* [bcoe](https://github.com/bcoe) -
|
|
|
|
**Ben Coe** <bencoe@gmail.com> (he/him)
|
2016-08-03 23:32:05 +00:00
|
|
|
* [bengl](https://github.com/bengl) -
|
2017-01-31 18:57:08 +00:00
|
|
|
**Bryan English** <bryan@bryanenglish.com> (he/him)
|
2016-08-03 23:32:05 +00:00
|
|
|
* [benjamingr](https://github.com/benjamingr) -
|
|
|
|
**Benjamin Gruenbaum** <benjamingr@gmail.com>
|
2018-03-26 11:36:46 +00:00
|
|
|
* [BethGriggs](https://github.com/BethGriggs) -
|
2020-10-01 17:37:28 +00:00
|
|
|
**Beth Griggs** <bgriggs@redhat.com> (she/her)
|
2016-08-03 23:32:05 +00:00
|
|
|
* [bmeck](https://github.com/bmeck) -
|
|
|
|
**Bradley Farias** <bradley.meck@gmail.com>
|
2017-09-29 05:21:27 +00:00
|
|
|
* [bmeurer](https://github.com/bmeurer) -
|
|
|
|
**Benedikt Meurer** <benedikt.meurer@gmail.com>
|
2018-09-17 21:31:55 +00:00
|
|
|
* [boneskull](https://github.com/boneskull) -
|
|
|
|
**Christopher Hiller** <boneskull@boneskull.com> (he/him)
|
2017-08-16 16:24:17 +00:00
|
|
|
* [BridgeAR](https://github.com/BridgeAR) -
|
2018-07-14 15:15:32 +00:00
|
|
|
**Ruben Bridgewater** <ruben@bridgewater.de> (he/him)
|
2016-08-03 23:32:05 +00:00
|
|
|
* [bzoz](https://github.com/bzoz) -
|
|
|
|
**Bartosz Sosnowski** <bartosz@janeasystems.com>
|
2019-05-03 17:00:33 +00:00
|
|
|
* [cclauss](https://github.com/cclauss) -
|
|
|
|
**Christian Clauss** <cclauss@me.com> (he/him)
|
2017-05-29 15:53:30 +00:00
|
|
|
* [ChALkeR](https://github.com/ChALkeR) -
|
|
|
|
**Сковорода Никита Андреевич** <chalkerx@gmail.com> (he/him)
|
|
|
|
* [cjihrig](https://github.com/cjihrig) -
|
2018-07-20 02:08:39 +00:00
|
|
|
**Colin Ihrig** <cjihrig@gmail.com> (he/him)
|
2018-07-07 20:13:49 +00:00
|
|
|
* [codebytere](https://github.com/codebytere) -
|
|
|
|
**Shelley Vohr** <codebytere@gmail.com> (she/her)
|
2016-08-30 09:05:33 +00:00
|
|
|
* [danbev](https://github.com/danbev) -
|
2018-09-03 07:11:20 +00:00
|
|
|
**Daniel Bevenius** <daniel.bevenius@gmail.com> (he/him)
|
2020-07-14 13:32:24 +00:00
|
|
|
* [danielleadams](https://github.com/danielleadams) -
|
|
|
|
**Danielle Adams** <adamzdanielle@gmail.com> (she/her)
|
2018-06-11 22:22:39 +00:00
|
|
|
* [davisjam](https://github.com/davisjam) -
|
|
|
|
**Jamie Davis** <davisjam@vt.edu> (he/him)
|
2020-08-02 16:19:20 +00:00
|
|
|
* [DerekNonGeneric](https://github.com/DerekNonGeneric) -
|
|
|
|
**Derek Lewis** <DerekNonGeneric@inf.is> (he/him)
|
2019-08-29 20:05:17 +00:00
|
|
|
* [devnexen](https://github.com/devnexen) -
|
|
|
|
**David Carlier** <devnexen@gmail.com>
|
2018-02-09 15:00:00 +00:00
|
|
|
* [devsnek](https://github.com/devsnek) -
|
2020-09-12 00:01:18 +00:00
|
|
|
**Gus Caplan** <me@gus.host> (they/them)
|
2017-01-18 21:09:36 +00:00
|
|
|
* [edsadr](https://github.com/edsadr) -
|
2017-01-31 18:57:08 +00:00
|
|
|
**Adrian Estrada** <edsadr@gmail.com> (he/him)
|
2016-09-21 16:57:01 +00:00
|
|
|
* [eugeneo](https://github.com/eugeneo) -
|
|
|
|
**Eugene Ostroukhov** <eostroukhov@google.com>
|
2017-05-29 15:53:30 +00:00
|
|
|
* [evanlucas](https://github.com/evanlucas) -
|
|
|
|
**Evan Lucas** <evanlucas@me.com> (he/him)
|
|
|
|
* [fhinkel](https://github.com/fhinkel) -
|
2017-10-07 21:29:50 +00:00
|
|
|
**Franziska Hinkelmann** <franziska.hinkelmann@gmail.com> (she/her)
|
2017-05-29 15:53:30 +00:00
|
|
|
* [Fishrock123](https://github.com/Fishrock123) -
|
2020-02-10 18:59:27 +00:00
|
|
|
**Jeremiah Senkpiel** <fishrock123@rocketmail.com> (he/they)
|
2020-04-02 17:30:13 +00:00
|
|
|
* [Flarna](https://github.com/Flarna) -
|
|
|
|
**Gerhard Stöbich** <deb2001-github@yahoo.de> (he/they)
|
2017-08-08 16:10:47 +00:00
|
|
|
* [gabrielschulhof](https://github.com/gabrielschulhof) -
|
|
|
|
**Gabriel Schulhof** <gabriel.schulhof@intel.com>
|
2018-08-10 15:41:49 +00:00
|
|
|
* [gdams](https://github.com/gdams) -
|
|
|
|
**George Adams** <george.adams@uk.ibm.com> (he/him)
|
2016-08-03 23:32:05 +00:00
|
|
|
* [geek](https://github.com/geek) -
|
|
|
|
**Wyatt Preul** <wpreul@gmail.com>
|
2019-06-20 11:25:18 +00:00
|
|
|
* [gengjiawen](https://github.com/gengjiawen) -
|
|
|
|
**Jiawen Geng** <technicalcute@gmail.com>
|
2020-01-10 20:35:23 +00:00
|
|
|
* [GeoffreyBooth](https://github.com/geoffreybooth) -
|
|
|
|
**Geoffrey Booth** <webmaster@geoffreybooth.com> (he/him)
|
2017-06-28 17:01:49 +00:00
|
|
|
* [gireeshpunathil](https://github.com/gireeshpunathil) -
|
|
|
|
**Gireesh Punathil** <gpunathi@in.ibm.com> (he/him)
|
2017-11-21 17:52:28 +00:00
|
|
|
* [guybedford](https://github.com/guybedford) -
|
|
|
|
**Guy Bedford** <guybedford@gmail.com> (he/him)
|
2020-07-18 07:31:44 +00:00
|
|
|
* [HarshithaKP](https://github.com/HarshithaKP) -
|
|
|
|
**Harshitha K P** <harshitha014@gmail.com> (she/her)
|
2017-11-07 14:10:55 +00:00
|
|
|
* [hashseed](https://github.com/hashseed) -
|
|
|
|
**Yang Guo** <yangguo@chromium.org> (he/him)
|
2020-04-09 03:29:31 +00:00
|
|
|
* [himself65](https://github.com/himself65) -
|
|
|
|
**Zeyu Yang** <himself65@outlook.com> (he/him)
|
2018-03-14 05:40:31 +00:00
|
|
|
* [hiroppy](https://github.com/hiroppy) -
|
|
|
|
**Yuta Hiroto** <hello@hiroppy.me> (he/him)
|
2017-05-29 15:53:30 +00:00
|
|
|
* [indutny](https://github.com/indutny) -
|
|
|
|
**Fedor Indutny** <fedor.indutny@gmail.com>
|
2016-08-03 23:32:05 +00:00
|
|
|
* [JacksonTian](https://github.com/JacksonTian) -
|
2016-10-05 18:22:55 +00:00
|
|
|
**Jackson Tian** <shyvo1987@gmail.com>
|
2017-05-29 15:53:30 +00:00
|
|
|
* [jasnell](https://github.com/jasnell) -
|
|
|
|
**James M Snell** <jasnell@gmail.com> (he/him)
|
2018-05-25 18:26:57 +00:00
|
|
|
* [jdalton](https://github.com/jdalton) -
|
|
|
|
**John-David Dalton** <john.david.dalton@gmail.com>
|
2017-04-15 15:30:42 +00:00
|
|
|
* [jkrems](https://github.com/jkrems) -
|
|
|
|
**Jan Krems** <jan.krems@gmail.com> (he/him)
|
2016-08-03 23:32:05 +00:00
|
|
|
* [joaocgreis](https://github.com/joaocgreis) -
|
|
|
|
**João Reis** <reis@janeasystems.com>
|
2017-05-29 15:53:30 +00:00
|
|
|
* [joyeecheung](https://github.com/joyeecheung) -
|
|
|
|
**Joyee Cheung** <joyeec9h3@gmail.com> (she/her)
|
2020-04-17 18:48:30 +00:00
|
|
|
* [juanarbol](https://github.com/juanarbol) -
|
|
|
|
**Juan José Arboleda** <soyjuanarbol@gmail.com> (he/him)
|
2016-08-03 23:32:05 +00:00
|
|
|
* [JungMinu](https://github.com/JungMinu) -
|
2019-10-17 12:12:09 +00:00
|
|
|
**Minwoo Jung** <nodecorelab@gmail.com> (he/him)
|
2016-08-03 23:32:05 +00:00
|
|
|
* [lance](https://github.com/lance) -
|
2018-07-15 01:45:11 +00:00
|
|
|
**Lance Ball** <lball@redhat.com> (he/him)
|
2019-10-25 14:39:28 +00:00
|
|
|
* [legendecas](https://github.com/legendecas) -
|
|
|
|
**Chengzhong Wu** <legendecas@gmail.com> (he/him)
|
2018-01-11 15:48:17 +00:00
|
|
|
* [Leko](https://github.com/Leko) -
|
|
|
|
**Shingo Inoue** <leko.noor@gmail.com> (he/him)
|
2016-08-30 05:53:41 +00:00
|
|
|
* [lpinca](https://github.com/lpinca) -
|
2017-01-31 18:57:08 +00:00
|
|
|
**Luigi Pinca** <luigipinca@gmail.com> (he/him)
|
2018-08-23 21:48:37 +00:00
|
|
|
* [lundibundi](https://github.com/lundibundi) -
|
|
|
|
**Denys Otrishko** <shishugi@gmail.com> (he/him)
|
2020-02-06 01:57:07 +00:00
|
|
|
* [mafintosh](https://github.com/mafintosh) -
|
2018-04-04 17:57:44 +00:00
|
|
|
**Mathias Buus** <mathiasbuus@gmail.com> (he/him)
|
2017-05-29 15:53:30 +00:00
|
|
|
* [mcollina](https://github.com/mcollina) -
|
|
|
|
**Matteo Collina** <matteo.collina@gmail.com> (he/him)
|
|
|
|
* [mhdawson](https://github.com/mhdawson) -
|
2020-09-08 21:40:59 +00:00
|
|
|
**Michael Dawson** <midawson@redhat.com> (he/him)
|
2020-03-31 17:08:49 +00:00
|
|
|
* [mildsunrise](https://github.com/mildsunrise) -
|
2020-03-27 23:20:05 +00:00
|
|
|
**Alba Mendez** <me@alba.sh> (she/her)
|
2017-05-29 15:53:30 +00:00
|
|
|
* [misterdjules](https://github.com/misterdjules) -
|
|
|
|
**Julien Gilli** <jgilli@nodejs.org>
|
2018-02-12 17:43:11 +00:00
|
|
|
* [mmarchini](https://github.com/mmarchini) -
|
2020-07-31 20:43:38 +00:00
|
|
|
**Mary Marchini** <oss@mmarchini.me> (she/her)
|
2017-05-29 15:53:30 +00:00
|
|
|
* [mscdex](https://github.com/mscdex) -
|
|
|
|
**Brian White** <mscdex@mscdex.net>
|
|
|
|
* [MylesBorins](https://github.com/MylesBorins) -
|
|
|
|
**Myles Borins** <myles.borins@gmail.com> (he/him)
|
|
|
|
* [ofrobots](https://github.com/ofrobots) -
|
2018-04-12 23:28:22 +00:00
|
|
|
**Ali Ijaz Sheikh** <ofrobots@google.com> (he/him)
|
2018-11-11 08:59:41 +00:00
|
|
|
* [oyyd](https://github.com/oyyd) -
|
|
|
|
**Ouyang Yadong** <oyydoibh@gmail.com> (he/him)
|
2018-11-06 15:58:36 +00:00
|
|
|
* [psmarshall](https://github.com/psmarshall) -
|
|
|
|
**Peter Marshall** <petermarshall@chromium.org> (he/him)
|
2020-04-13 07:11:31 +00:00
|
|
|
* [puzpuzpuz](https://github.com/puzpuzpuz) -
|
|
|
|
**Andrey Pechkurov** <apechkurov@gmail.com> (he/him)
|
2017-05-05 22:41:29 +00:00
|
|
|
* [Qard](https://github.com/Qard) -
|
2017-01-31 18:57:08 +00:00
|
|
|
**Stephen Belanger** <admin@stephenbelanger.com> (he/him)
|
2017-04-07 22:16:28 +00:00
|
|
|
* [refack](https://github.com/refack) -
|
2019-05-28 18:10:18 +00:00
|
|
|
**Refael Ackermann (רפאל פלחי)** <refack@gmail.com> (he/him/הוא/אתה)
|
2020-07-21 06:21:17 +00:00
|
|
|
* [rexagod](https://github.com/rexagod) -
|
|
|
|
**Pranshu Srivastava** <rexagod@gmail.com> (he/him)
|
2017-03-24 12:27:38 +00:00
|
|
|
* [richardlau](https://github.com/richardlau) -
|
2020-10-01 16:06:31 +00:00
|
|
|
**Richard Lau** <rlau@redhat.com>
|
2020-08-08 07:27:57 +00:00
|
|
|
* [rickyes](https://github.com/rickyes) -
|
|
|
|
**Ricky Zhou** <0x19951125@gmail.com> (he/him)
|
2020-02-06 01:57:07 +00:00
|
|
|
* [ronag](https://github.com/ronag) -
|
2020-01-24 17:35:47 +00:00
|
|
|
**Robert Nagy** <ronagy@icloud.com>
|
2018-08-03 17:21:42 +00:00
|
|
|
* [rubys](https://github.com/rubys) -
|
|
|
|
**Sam Ruby** <rubys@intertwingly.net>
|
2020-07-10 14:36:04 +00:00
|
|
|
* [ruyadorno](https://github.com/ruyadorno) -
|
|
|
|
**Ruy Adorno** <ruyadorno@github.com> (he/him)
|
2017-05-29 15:53:30 +00:00
|
|
|
* [rvagg](https://github.com/rvagg) -
|
|
|
|
**Rod Vagg** <rod@vagg.org>
|
2018-04-16 17:58:12 +00:00
|
|
|
* [ryzokuken](https://github.com/ryzokuken) -
|
2020-02-07 07:00:23 +00:00
|
|
|
**Ujjwal Sharma** <ryzokuken@disroot.org> (he/him)
|
2016-08-03 23:32:05 +00:00
|
|
|
* [saghul](https://github.com/saghul) -
|
|
|
|
**Saúl Ibarra Corretgé** <saghul@gmail.com>
|
|
|
|
* [santigimeno](https://github.com/santigimeno) -
|
|
|
|
**Santiago Gimeno** <santiago.gimeno@gmail.com>
|
|
|
|
* [seishun](https://github.com/seishun) -
|
|
|
|
**Nikolai Vavilov** <vvnicholas@gmail.com>
|
2017-05-29 15:53:30 +00:00
|
|
|
* [shigeki](https://github.com/shigeki) -
|
|
|
|
**Shigeki Ohtsu** <ohtsu@ohtsu.org> (he/him)
|
2018-11-06 14:43:41 +00:00
|
|
|
* [shisama](https://github.com/shisama) -
|
|
|
|
**Masashi Hirano** <shisama07@gmail.com> (he/him)
|
2016-08-03 23:32:05 +00:00
|
|
|
* [silverwind](https://github.com/silverwind) -
|
|
|
|
**Roman Reiss** <me@silverwind.io>
|
|
|
|
* [srl295](https://github.com/srl295) -
|
|
|
|
**Steven R Loomis** <srloomis@us.ibm.com>
|
2017-12-24 05:16:50 +00:00
|
|
|
* [starkwang](https://github.com/starkwang) -
|
|
|
|
**Weijia Wang** <starkwang@126.com>
|
2020-07-13 15:39:17 +00:00
|
|
|
* [sxa](https://github.com/sxa) -
|
2020-10-01 09:42:57 +00:00
|
|
|
**Stewart X Addison** <sxa@redhat.com> (he/him)
|
2017-05-29 15:53:30 +00:00
|
|
|
* [targos](https://github.com/targos) -
|
|
|
|
**Michaël Zasso** <targos@protonmail.com> (he/him)
|
2017-01-22 21:28:57 +00:00
|
|
|
* [TimothyGu](https://github.com/TimothyGu) -
|
2017-12-28 08:59:06 +00:00
|
|
|
**Tiancheng "Timothy" Gu** <timothygu99@gmail.com> (he/him)
|
2017-06-01 15:07:47 +00:00
|
|
|
* [tniessen](https://github.com/tniessen) -
|
|
|
|
**Tobias Nießen** <tniessen@tnie.de>
|
2018-03-16 05:05:53 +00:00
|
|
|
* [trivikr](https://github.com/trivikr) -
|
|
|
|
**Trivikram Kamat** <trivikr.dev@gmail.com>
|
2017-05-29 15:53:30 +00:00
|
|
|
* [Trott](https://github.com/Trott) -
|
|
|
|
**Rich Trott** <rtrott@gmail.com> (he/him)
|
2018-01-29 16:33:18 +00:00
|
|
|
* [vdeturckheim](https://github.com/vdeturckheim) -
|
|
|
|
**Vladimir de Turckheim** <vlad2t@hotmail.com> (he/him)
|
2017-03-03 17:17:24 +00:00
|
|
|
* [watilde](https://github.com/watilde) -
|
|
|
|
**Daijiro Wachi** <daijiro.wachi@gmail.com> (he/him)
|
2018-03-08 16:42:27 +00:00
|
|
|
* [watson](https://github.com/watson) -
|
|
|
|
**Thomas Watson** <w@tson.dk>
|
2017-07-20 11:32:41 +00:00
|
|
|
* [XadillaX](https://github.com/XadillaX) -
|
|
|
|
**Khaidi Chu** <i@2333.moe> (he/him)
|
2018-02-16 20:44:36 +00:00
|
|
|
* [yhwang](https://github.com/yhwang) -
|
|
|
|
**Yihong Wang** <yh.wang@ibm.com>
|
2016-08-03 23:32:05 +00:00
|
|
|
* [yorkie](https://github.com/yorkie) -
|
|
|
|
**Yorkie Liu** <yorkiefixer@gmail.com>
|
|
|
|
* [yosuke-furukawa](https://github.com/yosuke-furukawa) -
|
|
|
|
**Yosuke Furukawa** <yosuke.furukawa@gmail.com>
|
2019-03-18 11:04:46 +00:00
|
|
|
* [ZYSzys](https://github.com/ZYSzys) -
|
|
|
|
**Yongsheng Zhang** <zyszys98@gmail.com> (he/him)
|
build, i18n: improve Intl build, add "--with-intl"
The two main goals of this change are:
- To make it easier to build the Intl option using ICU (particularly,
using a newer ICU than v8/Chromium's version)
- To enable a much smaller ICU build with only English support The goal
here is to get node.js binaries built this way by default so that the
Intl API can be used. Additional data can be added at execution time
(see Readme and wiki)
More details are at https://github.com/joyent/node/pull/7719
In particular, this change adds the "--with-intl=" configure option to
provide more ways of building "Intl":
- "full-icu" picks up an ICU from deps/icu
- "small-icu" is similar, but builds only English
- "system-icu" uses pkg-config to find an installed ICU
- "none" does nothing (no Intl)
For Windows builds, the "full-icu" or "small-icu" options are added to
vcbuild.bat.
Note that the existing "--with-icu-path" option is not removed from
configure, but may not be used alongside the new option.
Wiki changes have already been made on
https://github.com/joyent/node/wiki/Installation
and a new page created at
https://github.com/joyent/node/wiki/Intl
(marked as provisional until this change lands.)
Summary of changes:
* README.md : doc updates
* .gitignore : added "deps/icu" as this is the location where ICU is
unpacked to.
* Makefile : added the tools/icu/* files to cpplint, but excluded a
problematic file.
* configure : added the "--with-intl" option mentioned above.
Calculate at config time the list of ICU source files to use and data
packaging options.
* node.gyp : add the new files src/node_i18n.cc/.h as well as ICU
linkage.
* src/node.cc : add call into
node::i18n::InitializeICUDirectory(icu_data_dir) as well as new
--icu-data-dir option and NODE_ICU_DATA env variable to configure ICU
data loading. This loading is only relevant in the "small"
configuration.
* src/node_i18n.cc : new source file for the above Initialize..
function, to setup ICU as needed.
* tools/icu : new directory with some tools needed for this build.
* tools/icu/icu-generic.gyp : new .gyp file that builds ICU in some new
ways, both on unix/mac and windows.
* tools/icu/icu-system.gyp : new .gyp file to build node against a
pkg-config detected ICU.
* tools/icu/icu_small.json : new config file for the "English-only" small
build.
* tools/icu/icutrim.py : new tool for trimming down ICU data. Reads the
above .json file.
* tools/icu/iculslocs.cc : new tool for repairing ICU data manifests
after trim operation.
* tools/icu/no-op.cc : dummy file to force .gyp into using a C++ linker.
* vcbuild.bat : added small-icu and full-icu options, to call into
configure.
* Fixed toolset dependencies, see
https://github.com/joyent/node/pull/7719#issuecomment-54641687
Note that because of a bug in gyp {CC,CXX}_host must also be set.
Otherwise gcc/g++ will be used by default for part of the build.
Reviewed-by: Trevor Norris <trev.norris@gmail.com>
Reviewed-by: Fedor Indutny <fedor@indutny.com>
2014-09-05 05:03:24 +00:00
|
|
|
|
2017-10-13 04:12:52 +00:00
|
|
|
### Collaborator Emeriti
|
|
|
|
|
2019-05-03 02:14:20 +00:00
|
|
|
* [andrasq](https://github.com/andrasq) -
|
|
|
|
**Andras** <andras@kinvey.com>
|
2019-05-07 22:12:26 +00:00
|
|
|
* [AnnaMag](https://github.com/AnnaMag) -
|
|
|
|
**Anna M. Kedzierska** <anna.m.kedzierska@gmail.com>
|
2020-02-28 05:07:30 +00:00
|
|
|
* [aqrln](https://github.com/aqrln) -
|
|
|
|
**Alexey Orlenko** <eaglexrlnk@gmail.com> (he/him)
|
2020-10-03 12:49:56 +00:00
|
|
|
* [bnoordhuis](https://github.com/bnoordhuis) -
|
|
|
|
**Ben Noordhuis** <info@bnoordhuis.nl>
|
2019-11-04 02:59:36 +00:00
|
|
|
* [brendanashworth](https://github.com/brendanashworth) -
|
|
|
|
**Brendan Ashworth** <brendan.ashworth@me.com>
|
2020-02-11 10:44:44 +00:00
|
|
|
* [calvinmetcalf](https://github.com/calvinmetcalf) -
|
|
|
|
**Calvin Metcalf** <calvin.metcalf@gmail.com>
|
2019-05-14 21:47:12 +00:00
|
|
|
* [chrisdickinson](https://github.com/chrisdickinson) -
|
|
|
|
**Chris Dickinson** <christopher.s.dickinson@gmail.com>
|
2020-03-08 18:17:51 +00:00
|
|
|
* [claudiorodriguez](https://github.com/claudiorodriguez) -
|
|
|
|
**Claudio Rodriguez** <cjrodr@yahoo.com>
|
2019-11-04 02:59:36 +00:00
|
|
|
* [DavidCai1993](https://github.com/DavidCai1993) -
|
|
|
|
**David Cai** <davidcai1993@yahoo.com> (he/him)
|
2020-07-04 02:47:43 +00:00
|
|
|
* [digitalinfinity](https://github.com/digitalinfinity) -
|
|
|
|
**Hitesh Kanwathirtha** <digitalinfinity@gmail.com> (he/him)
|
2020-02-11 10:42:17 +00:00
|
|
|
* [eljefedelrodeodeljefe](https://github.com/eljefedelrodeodeljefe) -
|
|
|
|
**Robert Jefe Lindstaedt** <robert.lindstaedt@gmail.com>
|
2020-02-11 10:44:44 +00:00
|
|
|
* [estliberitas](https://github.com/estliberitas) -
|
|
|
|
**Alexander Makarenko** <estliberitas@gmail.com>
|
2019-05-09 01:18:38 +00:00
|
|
|
* [firedfox](https://github.com/firedfox) -
|
|
|
|
**Daniel Wang** <wangyang0123@gmail.com>
|
2020-07-04 02:45:59 +00:00
|
|
|
* [gibfahn](https://github.com/gibfahn) -
|
|
|
|
**Gibson Fahnestock** <gibfahn@gmail.com> (he/him)
|
2020-02-28 03:52:54 +00:00
|
|
|
* [glentiki](https://github.com/glentiki) -
|
|
|
|
**Glen Keane** <glenkeane.94@gmail.com> (he/him)
|
2020-03-08 18:17:51 +00:00
|
|
|
* [iarna](https://github.com/iarna) -
|
|
|
|
**Rebecca Turner** <me@re-becca.org>
|
2018-06-11 21:52:37 +00:00
|
|
|
* [imran-iq](https://github.com/imran-iq) -
|
|
|
|
**Imran Iqbal** <imran@imraniqbal.org>
|
2019-11-04 02:59:36 +00:00
|
|
|
* [imyller](https://github.com/imyller) -
|
|
|
|
**Ilkka Myller** <ilkka.myller@nodefield.com>
|
2017-10-13 04:12:52 +00:00
|
|
|
* [isaacs](https://github.com/isaacs) -
|
|
|
|
**Isaac Z. Schlueter** <i@izs.me>
|
2020-03-08 18:17:51 +00:00
|
|
|
* [italoacasas](https://github.com/italoacasas) -
|
|
|
|
**Italo A. Casas** <me@italoacasas.com> (he/him)
|
2019-11-04 02:59:36 +00:00
|
|
|
* [jasongin](https://github.com/jasongin) -
|
|
|
|
**Jason Ginchereau** <jasongin@microsoft.com>
|
2020-02-28 05:04:46 +00:00
|
|
|
* [jbergstroem](https://github.com/jbergstroem) -
|
|
|
|
**Johan Bergström** <bugs@bergstroem.nu>
|
2019-05-15 02:14:36 +00:00
|
|
|
* [jhamhader](https://github.com/jhamhader) -
|
|
|
|
**Yuval Brik** <yuval@brik.org.il>
|
2019-10-30 13:30:36 +00:00
|
|
|
* [joshgav](https://github.com/joshgav) -
|
|
|
|
**Josh Gavant** <josh.gavant@outlook.com>
|
2020-02-19 04:18:31 +00:00
|
|
|
* [julianduque](https://github.com/julianduque) -
|
|
|
|
**Julian Duque** <julianduquej@gmail.com> (he/him)
|
2020-07-08 12:44:06 +00:00
|
|
|
* [kfarnung](https://github.com/kfarnung) -
|
|
|
|
**Kyle Farnung** <kfarnung@microsoft.com> (he/him)
|
2019-10-30 13:30:36 +00:00
|
|
|
* [kunalspathak](https://github.com/kunalspathak) -
|
|
|
|
**Kunal Pathak** <kunal.pathak@microsoft.com>
|
|
|
|
* [lucamaraschi](https://github.com/lucamaraschi) -
|
|
|
|
**Luca Maraschi** <luca.maraschi@gmail.com> (he/him)
|
2017-10-13 04:12:52 +00:00
|
|
|
* [lxe](https://github.com/lxe) -
|
|
|
|
**Aleksey Smolenchuk** <lxe@lxe.co>
|
2020-02-28 03:57:56 +00:00
|
|
|
* [maclover7](https://github.com/maclover7) -
|
|
|
|
**Jon Moss** <me@jonathanmoss.me> (he/him)
|
2018-01-05 08:05:41 +00:00
|
|
|
* [matthewloring](https://github.com/matthewloring) -
|
|
|
|
**Matthew Loring** <mattloring@google.com>
|
2018-06-11 21:52:37 +00:00
|
|
|
* [micnic](https://github.com/micnic) -
|
|
|
|
**Nicu Micleușanu** <micnic90@gmail.com> (he/him)
|
2018-04-17 18:41:21 +00:00
|
|
|
* [mikeal](https://github.com/mikeal) -
|
|
|
|
**Mikeal Rogers** <mikeal.rogers@gmail.com>
|
2017-10-13 04:12:52 +00:00
|
|
|
* [monsanto](https://github.com/monsanto) -
|
|
|
|
**Christopher Monsanto** <chris@monsan.to>
|
2020-03-08 18:17:51 +00:00
|
|
|
* [MoonBall](https://github.com/MoonBall) -
|
|
|
|
**Chen Gang** <gangc.cxy@foxmail.com>
|
2020-02-24 04:51:56 +00:00
|
|
|
* [not-an-aardvark](https://github.com/not-an-aardvark) -
|
|
|
|
**Teddy Katz** <teddy.katz@gmail.com> (he/him)
|
2017-10-13 04:12:52 +00:00
|
|
|
* [Olegas](https://github.com/Olegas) -
|
|
|
|
**Oleg Elifantiev** <oleg@elifantiev.ru>
|
2019-05-09 20:17:19 +00:00
|
|
|
* [orangemocha](https://github.com/orangemocha) -
|
|
|
|
**Alexis Campailla** <orangemocha@nodejs.org>
|
2019-04-27 01:30:56 +00:00
|
|
|
* [othiym23](https://github.com/othiym23) -
|
|
|
|
**Forrest L Norvell** <ogd@aoaioxxysz.net> (he/him)
|
2017-10-13 04:12:52 +00:00
|
|
|
* [petkaantonov](https://github.com/petkaantonov) -
|
|
|
|
**Petka Antonov** <petka_antonov@hotmail.com>
|
2018-10-20 23:37:24 +00:00
|
|
|
* [phillipj](https://github.com/phillipj) -
|
|
|
|
**Phillip Johnsen** <johphi@gmail.com>
|
2017-10-13 04:12:52 +00:00
|
|
|
* [piscisaureus](https://github.com/piscisaureus) -
|
|
|
|
**Bert Belder** <bertbelder@gmail.com>
|
2019-05-07 22:06:48 +00:00
|
|
|
* [pmq20](https://github.com/pmq20) -
|
|
|
|
**Minqi Pan** <pmq2001@gmail.com>
|
2020-02-11 07:03:25 +00:00
|
|
|
* [princejwesley](https://github.com/princejwesley) -
|
|
|
|
**Prince John Wesley** <princejohnwesley@gmail.com>
|
2017-10-13 04:12:52 +00:00
|
|
|
* [rlidwka](https://github.com/rlidwka) -
|
|
|
|
**Alex Kocharin** <alex@kocharin.ru>
|
2018-06-11 21:52:37 +00:00
|
|
|
* [rmg](https://github.com/rmg) -
|
|
|
|
**Ryan Graham** <r.m.graham@gmail.com>
|
|
|
|
* [robertkowalski](https://github.com/robertkowalski) -
|
|
|
|
**Robert Kowalski** <rok@kowalski.gd>
|
|
|
|
* [romankl](https://github.com/romankl) -
|
|
|
|
**Roman Klauke** <romaaan.git@gmail.com>
|
2020-10-27 14:24:10 +00:00
|
|
|
* [ronkorving](https://github.com/ronkorving) -
|
|
|
|
**Ron Korving** <ron@ronkorving.nl>
|
2019-11-04 02:59:36 +00:00
|
|
|
* [RReverser](https://github.com/RReverser) -
|
|
|
|
**Ingvar Stepanyan** <me@rreverser.com>
|
2020-06-28 04:29:58 +00:00
|
|
|
* [sam-github](https://github.com/sam-github) -
|
|
|
|
**Sam Roberts** <vieuxtech@gmail.com>
|
2020-07-10 16:02:38 +00:00
|
|
|
* [sebdeckers](https://github.com/sebdeckers) -
|
|
|
|
**Sebastiaan Deckers** <sebdeckers83@gmail.com>
|
2019-04-30 21:14:01 +00:00
|
|
|
* [stefanmb](https://github.com/stefanmb) -
|
|
|
|
**Stefan Budeanu** <stefan@budeanu.com>
|
2017-10-13 04:12:52 +00:00
|
|
|
* [tellnes](https://github.com/tellnes) -
|
|
|
|
**Christian Tellnes** <christian@tellnes.no>
|
2020-07-22 00:19:17 +00:00
|
|
|
* [thefourtheye](https://github.com/thefourtheye) -
|
|
|
|
**Sakthipriyan Vairamani** <thechargingvolcano@gmail.com> (he/him)
|
2019-10-30 13:30:36 +00:00
|
|
|
* [thlorenz](https://github.com/thlorenz) -
|
|
|
|
**Thorsten Lorenz** <thlorenz@gmx.de>
|
2020-03-08 18:17:51 +00:00
|
|
|
* [trevnorris](https://github.com/trevnorris) -
|
|
|
|
**Trevor Norris** <trev.norris@gmail.com>
|
2018-05-05 04:59:16 +00:00
|
|
|
* [tunniclm](https://github.com/tunniclm) -
|
|
|
|
**Mike Tunnicliffe** <m.j.tunnicliffe@gmail.com>
|
2020-02-11 07:01:28 +00:00
|
|
|
* [vkurchatkin](https://github.com/vkurchatkin) -
|
|
|
|
**Vladimir Kurchatkin** <vladimir.kurchatkin@gmail.com>
|
2019-04-25 14:46:31 +00:00
|
|
|
* [vsemozhetbyt](https://github.com/vsemozhetbyt) -
|
|
|
|
**Vse Mozhet Byt** <vsemozhetbyt@gmail.com> (he/him)
|
2019-05-14 21:41:30 +00:00
|
|
|
* [whitlockjc](https://github.com/whitlockjc) -
|
|
|
|
**Jeremy Whitlock** <jwhitlock@apache.org>
|
2020-06-04 04:59:33 +00:00
|
|
|
<!--lint enable prohibited-strings-->
|
2017-10-13 04:12:52 +00:00
|
|
|
|
2020-02-14 12:54:11 +00:00
|
|
|
Collaborators follow the [Collaborator Guide](./doc/guides/collaborator-guide.md) in
|
2017-05-29 15:53:30 +00:00
|
|
|
maintaining the Node.js project.
|
2015-08-20 04:51:00 +00:00
|
|
|
|
2020-09-11 12:05:16 +00:00
|
|
|
### Triagers
|
|
|
|
|
|
|
|
* [PoojaDurgad](https://github.com/PoojaDurgad) -
|
|
|
|
**Pooja Durgad** <Pooja.D.P@ibm.com>
|
|
|
|
|
2018-10-27 19:37:12 +00:00
|
|
|
### Release Keys
|
2015-08-20 04:51:00 +00:00
|
|
|
|
2020-04-01 04:41:08 +00:00
|
|
|
Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
|
2015-08-20 04:51:00 +00:00
|
|
|
|
2020-10-01 17:37:28 +00:00
|
|
|
* **Beth Griggs** <bgriggs@redhat.com>
|
2018-11-20 20:19:39 +00:00
|
|
|
`4ED778F539E3634C779C87C6D7062848A1AB005C`
|
2016-08-03 23:32:05 +00:00
|
|
|
* **Colin Ihrig** <cjihrig@gmail.com>
|
|
|
|
`94AE36675C464D64BAFA68DD7434390BDBE9B9C5`
|
2020-10-07 18:04:37 +00:00
|
|
|
* **Danielle Adams** <adamzdanielle@gmail.com>
|
|
|
|
`1C050899334244A8AF75E53792EF661D867B9DFA`
|
2016-08-03 23:32:05 +00:00
|
|
|
* **James M Snell** <jasnell@keybase.io>
|
|
|
|
`71DCFD284A79C3B38668286BC97EC7A07EDE3FC1`
|
2018-06-03 14:36:30 +00:00
|
|
|
* **Michaël Zasso** <targos@protonmail.com>
|
|
|
|
`8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600`
|
2016-08-03 23:32:05 +00:00
|
|
|
* **Myles Borins** <myles.borins@gmail.com>
|
|
|
|
`C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8`
|
2020-10-01 16:06:31 +00:00
|
|
|
* **Richard Lau** <rlau@redhat.com>
|
2020-07-16 16:08:27 +00:00
|
|
|
`C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C`
|
2016-08-03 23:32:05 +00:00
|
|
|
* **Rod Vagg** <rod@vagg.org>
|
|
|
|
`DD8F2338BAE7501E3DD5AC78C273792F7D83545D`
|
2018-10-11 23:07:18 +00:00
|
|
|
* **Ruben Bridgewater** <ruben@bridgewater.de>
|
|
|
|
`A48C2BEE680E841632CD4E44F07496B3EB3C1762`
|
2020-08-05 01:05:55 +00:00
|
|
|
* **Ruy Adorno** <ruyadorno@hotmail.com>
|
|
|
|
`108F52B48DB57BB0CC439B2997B01419BD92F80A`
|
2018-12-13 18:07:57 +00:00
|
|
|
* **Shelley Vohr** <shelley.vohr@gmail.com>
|
|
|
|
`B9E2F5981AA6E0CD28160D9FF13993A75599653C`
|
2015-08-20 04:51:00 +00:00
|
|
|
|
2020-04-04 09:31:39 +00:00
|
|
|
To import the full set of trusted release keys (including subkeys possibly used
|
|
|
|
to sign releases):
|
2015-08-20 04:51:00 +00:00
|
|
|
|
2020-05-20 15:10:22 +00:00
|
|
|
```bash
|
2018-11-20 20:19:39 +00:00
|
|
|
gpg --keyserver pool.sks-keyservers.net --recv-keys 4ED778F539E3634C779C87C6D7062848A1AB005C
|
2015-08-20 04:51:00 +00:00
|
|
|
gpg --keyserver pool.sks-keyservers.net --recv-keys 94AE36675C464D64BAFA68DD7434390BDBE9B9C5
|
2020-10-07 18:04:37 +00:00
|
|
|
gpg --keyserver pool.sks-keyservers.net --recv-keys 1C050899334244A8AF75E53792EF661D867B9DFA
|
2018-06-03 14:36:30 +00:00
|
|
|
gpg --keyserver pool.sks-keyservers.net --recv-keys 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1
|
|
|
|
gpg --keyserver pool.sks-keyservers.net --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600
|
|
|
|
gpg --keyserver pool.sks-keyservers.net --recv-keys C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8
|
2020-07-16 16:08:27 +00:00
|
|
|
gpg --keyserver pool.sks-keyservers.net --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C
|
2018-06-03 14:36:30 +00:00
|
|
|
gpg --keyserver pool.sks-keyservers.net --recv-keys DD8F2338BAE7501E3DD5AC78C273792F7D83545D
|
2018-10-11 23:07:18 +00:00
|
|
|
gpg --keyserver pool.sks-keyservers.net --recv-keys A48C2BEE680E841632CD4E44F07496B3EB3C1762
|
2020-08-05 01:05:55 +00:00
|
|
|
gpg --keyserver pool.sks-keyservers.net --recv-keys 108F52B48DB57BB0CC439B2997B01419BD92F80A
|
2020-03-31 07:31:40 +00:00
|
|
|
gpg --keyserver pool.sks-keyservers.net --recv-keys B9E2F5981AA6E0CD28160D9FF13993A75599653C
|
2015-08-20 04:51:00 +00:00
|
|
|
```
|
|
|
|
|
2018-10-08 05:20:26 +00:00
|
|
|
See the section above on [Verifying Binaries](#verifying-binaries) for how to
|
|
|
|
use these keys to verify a downloaded file.
|
2015-08-20 04:51:00 +00:00
|
|
|
|
2018-10-17 04:29:02 +00:00
|
|
|
Other keys used to sign some previous releases:
|
2015-08-20 04:51:00 +00:00
|
|
|
|
2017-01-26 00:58:34 +00:00
|
|
|
* **Chris Dickinson** <christopher.s.dickinson@gmail.com>
|
|
|
|
`9554F04D7259F04124DE6B476D5A82AC7E37093B`
|
2020-03-31 07:31:40 +00:00
|
|
|
* **Evan Lucas** <evanlucas@me.com>
|
|
|
|
`B9AE9905FFD7803F25714661B63B535A4C206CA9`
|
|
|
|
* **Gibson Fahnestock** <gibfahn@gmail.com>
|
|
|
|
`77984A986EBC2AA786BC0F66B01FBB92821C587A`
|
2016-08-03 23:32:05 +00:00
|
|
|
* **Isaac Z. Schlueter** <i@izs.me>
|
|
|
|
`93C7E9E91B49E432C2F75674B0A78B0A6C481CF6`
|
2018-06-13 15:00:59 +00:00
|
|
|
* **Italo A. Casas** <me@italoacasas.com>
|
|
|
|
`56730D5401028683275BD23C23EFEFE93C4CFFFE`
|
2020-03-31 07:31:40 +00:00
|
|
|
* **Jeremiah Senkpiel** <fishrock@keybase.io>
|
|
|
|
`FD3A5288F042B6850C66B31F09FE44734EB7990E`
|
2016-08-03 23:32:05 +00:00
|
|
|
* **Julien Gilli** <jgilli@fastmail.fm>
|
|
|
|
`114F43EE0176B71C7BC219DD50A3051F888C628D`
|
|
|
|
* **Timothy J Fontaine** <tjfontaine@gmail.com>
|
|
|
|
`7937DFD2AB06298B2293C3187D33FF9D0246406D`
|
2016-07-20 15:24:57 +00:00
|
|
|
|
2017-10-23 23:37:43 +00:00
|
|
|
[Code of Conduct]: https://github.com/nodejs/admin/blob/master/CODE_OF_CONDUCT.md
|
2016-07-20 15:24:57 +00:00
|
|
|
[Contributing to the project]: CONTRIBUTING.md
|
2019-06-07 12:12:34 +00:00
|
|
|
[Node.js Website]: https://nodejs.org/
|
2020-05-28 14:03:53 +00:00
|
|
|
[OpenJS Foundation]: https://openjsf.org/
|
2017-11-17 20:36:19 +00:00
|
|
|
[Strategic Initiatives]: https://github.com/nodejs/TSC/blob/master/Strategic-Initiatives.md
|
2020-09-10 15:19:44 +00:00
|
|
|
[Technical values and prioritization]: doc/guides/technical-values.md
|
|
|
|
[Working Groups]: https://github.com/nodejs/TSC/blob/master/WORKING_GROUPS.md
|