2022-03-19 16:35:20 +01:00
|
|
|
# Node.js
|
2011-01-24 05:52:37 +01:00
|
|
|
|
2022-09-15 10:34:40 +02:00
|
|
|
Node.js is an open-source, cross-platform JavaScript runtime environment.
|
2021-11-19 14:45:39 +01:00
|
|
|
|
2022-02-06 17:34:32 +01:00
|
|
|
For information on using Node.js, see the [Node.js website][].
|
2015-12-07 06:29:24 +01:00
|
|
|
|
2018-09-25 06:54:13 +02:00
|
|
|
The Node.js project uses an [open governance model](./GOVERNANCE.md). The
|
2019-06-07 14:12:34 +02:00
|
|
|
[OpenJS Foundation][] provides support for the project.
|
2017-03-31 16:21:32 +02:00
|
|
|
|
2023-01-06 19:30:21 +01:00
|
|
|
Contributors are expected to act in a collaborative manner to move
|
|
|
|
the project forward. We encourage the constructive exchange of contrary
|
|
|
|
opinions and compromise. The [TSC](./GOVERNANCE.md#technical-steering-committee)
|
|
|
|
reserves the right to limit or block contributors who repeatedly act in ways
|
|
|
|
that discourage, exhaust, or otherwise negatively affect other participants.
|
|
|
|
|
2021-11-19 14:45:39 +01:00
|
|
|
**This project has a [Code of Conduct][].**
|
2014-12-02 03:06:21 +01:00
|
|
|
|
2022-03-19 16:35:20 +01:00
|
|
|
## Table of contents
|
2017-03-01 15:45:01 +01:00
|
|
|
|
2017-10-27 01:14:35 +02:00
|
|
|
* [Support](#support)
|
2021-03-06 23:01:36 +01:00
|
|
|
* [Release types](#release-types)
|
2017-03-01 15:45:01 +01:00
|
|
|
* [Download](#download)
|
2021-03-06 23:01:36 +01:00
|
|
|
* [Current and LTS releases](#current-and-lts-releases)
|
|
|
|
* [Nightly releases](#nightly-releases)
|
|
|
|
* [API documentation](#api-documentation)
|
|
|
|
* [Verifying binaries](#verifying-binaries)
|
2017-03-01 15:45:01 +01:00
|
|
|
* [Building Node.js](#building-nodejs)
|
2017-11-17 23:07:01 +01:00
|
|
|
* [Security](#security)
|
2019-05-22 05:19:00 +02:00
|
|
|
* [Contributing to Node.js](#contributing-to-nodejs)
|
2021-03-06 23:01:36 +01:00
|
|
|
* [Current project team members](#current-project-team-members)
|
2017-11-17 23:07:01 +01:00
|
|
|
* [TSC (Technical Steering Committee)](#tsc-technical-steering-committee)
|
|
|
|
* [Collaborators](#collaborators)
|
2021-09-01 12:07:21 +02:00
|
|
|
* [Triagers](#triagers)
|
2021-03-06 23:01:36 +01:00
|
|
|
* [Release keys](#release-keys)
|
2020-11-26 11:28:15 +01:00
|
|
|
* [License](#license)
|
2017-03-01 15:45:01 +01:00
|
|
|
|
2017-10-27 01:14:35 +02:00
|
|
|
## Support
|
|
|
|
|
2019-05-27 18:20:01 +02:00
|
|
|
Looking for help? Check out the
|
|
|
|
[instructions for getting support](.github/SUPPORT.md).
|
2016-05-10 23:46:12 +02:00
|
|
|
|
2021-02-06 17:17:21 +01:00
|
|
|
## Release types
|
2018-10-01 07:52:19 +02:00
|
|
|
|
|
|
|
* **Current**: Under active development. Code for the Current release is in the
|
|
|
|
branch for its major version number (for example,
|
2024-08-15 22:40:25 +02:00
|
|
|
[v22.x](https://github.com/nodejs/node/tree/v22.x)). Node.js releases a new
|
2018-10-01 07:52:19 +02:00
|
|
|
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.
|
2021-05-29 17:05:48 +02:00
|
|
|
* **LTS**: Releases that receive Long Term Support, with a focus on stability
|
2018-10-01 07:52:19 +02:00
|
|
|
and security. Every even-numbered major version will become an LTS release.
|
2019-11-28 21:55:25 +01:00
|
|
|
LTS releases receive 12 months of _Active LTS_ support and a further 18 months
|
2020-12-23 14:22:21 +01:00
|
|
|
of _Maintenance_. LTS release lines have alphabetically-ordered code names,
|
2018-10-01 07:52:19 +02:00
|
|
|
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.
|
|
|
|
|
2022-03-21 18:57:10 +01:00
|
|
|
Current and LTS releases follow [semantic versioning](https://semver.org). A
|
2018-10-27 21:37:12 +02:00
|
|
|
member of the Release Team [signs](#release-keys) each Current and LTS release.
|
2018-10-01 07:52:19 +02:00
|
|
|
For more information, see the
|
2018-12-02 12:14:08 +01:00
|
|
|
[Release README](https://github.com/nodejs/Release#readme).
|
2017-07-16 03:41:05 +02:00
|
|
|
|
2017-11-17 23:07:01 +01:00
|
|
|
### Download
|
2015-01-31 11:55:37 +01:00
|
|
|
|
2015-02-15 01:52:30 +01:00
|
|
|
Binaries, installers, and source tarballs are available at
|
2018-09-25 18:29:38 +02:00
|
|
|
<https://nodejs.org/en/download/>.
|
2015-01-31 11:55:37 +01:00
|
|
|
|
2021-02-06 17:17:21 +01:00
|
|
|
#### Current and LTS releases
|
2021-09-18 00:44:08 +02:00
|
|
|
|
2018-10-02 06:38:59 +02:00
|
|
|
<https://nodejs.org/download/release/>
|
|
|
|
|
2015-10-22 06:47:36 +02:00
|
|
|
The [latest](https://nodejs.org/download/release/latest/) directory is an
|
2018-10-02 06:38:59 +02:00
|
|
|
alias for the latest Current release. The latest-_codename_ directory is an
|
2018-10-08 07:20:26 +02:00
|
|
|
alias for the latest release from an LTS line. For example, the
|
2023-05-03 21:06:29 +02:00
|
|
|
[latest-hydrogen](https://nodejs.org/download/release/latest-hydrogen/)
|
|
|
|
directory contains the latest Hydrogen (Node.js 18) release.
|
2015-01-31 11:55:37 +01:00
|
|
|
|
2021-02-06 17:17:21 +01:00
|
|
|
#### Nightly releases
|
2021-09-18 00:44:08 +02:00
|
|
|
|
2018-10-02 06:38:59 +02:00
|
|
|
<https://nodejs.org/download/nightly/>
|
|
|
|
|
2024-09-25 19:35:07 +02:00
|
|
|
Each directory and filename includes the version (e.g., `v22.0.0`),
|
|
|
|
followed by the UTC date (e.g., `20240424` for April 24, 2024),
|
|
|
|
and the short commit SHA of the HEAD of the release (e.g., `ddd0a9e494`).
|
|
|
|
For instance, a full directory name might look like `v22.0.0-nightly20240424ddd0a9e494`.
|
2015-01-31 11:55:37 +01:00
|
|
|
|
2021-02-06 17:17:21 +01:00
|
|
|
#### API documentation
|
2018-10-02 06:38:59 +02:00
|
|
|
|
2018-10-04 22:44:03 +02: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 06:38:59 +02:00
|
|
|
|
2021-02-06 17:17:21 +01:00
|
|
|
### Verifying binaries
|
2015-01-31 11:55:37 +01:00
|
|
|
|
2018-10-07 00:28:14 +02:00
|
|
|
Download directories contain a `SHASUMS256.txt` file with SHA checksums for the
|
2018-10-03 23:14:19 +02:00
|
|
|
files.
|
2016-04-08 20:08:23 +02:00
|
|
|
|
2018-10-07 00:28:14 +02:00
|
|
|
To download `SHASUMS256.txt` using `curl`:
|
2016-04-08 20:08:23 +02:00
|
|
|
|
2023-05-20 00:14:03 +02:00
|
|
|
```bash
|
|
|
|
curl -O https://nodejs.org/dist/vx.y.z/SHASUMS256.txt
|
2016-04-08 20:08:23 +02:00
|
|
|
```
|
|
|
|
|
2024-10-23 14:06:41 +02:00
|
|
|
To check that downloaded files match the checksum, use `sha256sum`:
|
2015-01-31 11:55:37 +01:00
|
|
|
|
2023-05-20 00:14:03 +02:00
|
|
|
```bash
|
2024-10-23 14:06:41 +02:00
|
|
|
sha256sum -c SHASUMS256.txt --ignore-missing
|
2015-01-31 11:55:37 +01:00
|
|
|
```
|
|
|
|
|
2018-10-07 00:28:14 +02: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
|
2021-02-07 07:05:20 +01:00
|
|
|
`SHASUMS256.txt`. You will first need to import
|
2024-08-05 18:39:58 +02:00
|
|
|
[the GPG keys of individuals authorized to create releases](#release-keys).
|
2015-01-31 11:55:37 +01:00
|
|
|
|
2024-08-05 18:39:58 +02:00
|
|
|
See [Release keys](#release-keys) for commands to import active release keys.
|
2015-01-31 11:55:37 +01:00
|
|
|
|
2018-10-07 00:28:14 +02:00
|
|
|
Next, download the `SHASUMS256.txt.sig` for the release:
|
2015-01-31 11:55:37 +01:00
|
|
|
|
2023-05-20 00:14:03 +02:00
|
|
|
```bash
|
|
|
|
curl -O https://nodejs.org/dist/vx.y.z/SHASUMS256.txt.sig
|
2017-08-31 02:05:39 +02:00
|
|
|
```
|
|
|
|
|
2018-10-03 23:14:19 +02:00
|
|
|
Then use `gpg --verify SHASUMS256.txt.sig SHASUMS256.txt` to verify
|
|
|
|
the file's signature.
|
2015-01-31 11:55:37 +01:00
|
|
|
|
2016-03-10 00:41:52 +01:00
|
|
|
## Building Node.js
|
2015-01-02 12:52:50 +01:00
|
|
|
|
2018-10-08 18:24:37 +02:00
|
|
|
See [BUILDING.md](BUILDING.md) for instructions on how to build Node.js from
|
|
|
|
source and a list of supported platforms.
|
2011-08-27 00:04:47 +02:00
|
|
|
|
2015-06-11 12:37:37 +02:00
|
|
|
## Security
|
2015-01-02 12:52:50 +01:00
|
|
|
|
2018-11-02 05:24:54 +01:00
|
|
|
For information on reporting security vulnerabilities in Node.js, see
|
|
|
|
[SECURITY.md](./SECURITY.md).
|
2017-07-25 21:52:49 +02:00
|
|
|
|
2019-05-22 05:19:00 +02:00
|
|
|
## Contributing to Node.js
|
|
|
|
|
|
|
|
* [Contributing to the project][]
|
|
|
|
* [Working Groups][]
|
2021-07-15 07:22:47 +02:00
|
|
|
* [Strategic initiatives][]
|
2020-09-10 17:19:44 +02:00
|
|
|
* [Technical values and prioritization][]
|
2019-05-22 05:19:00 +02:00
|
|
|
|
2021-02-06 17:17:21 +01:00
|
|
|
## Current project team members
|
2015-01-02 12:52:50 +01:00
|
|
|
|
2018-10-17 06:29:02 +02:00
|
|
|
For information about the governance of the Node.js project, see
|
2015-01-02 12:52:50 +01:00
|
|
|
[GOVERNANCE.md](./GOVERNANCE.md).
|
|
|
|
|
2021-11-21 16:10:04 +01:00
|
|
|
<!-- node-core-utils and find-inactive-tsc.mjs depend on the format of the TSC
|
|
|
|
list. If the format changes, those utilities need to be tested and
|
|
|
|
updated. -->
|
2021-09-18 00:44:08 +02:00
|
|
|
|
2017-08-22 07:44:50 +02:00
|
|
|
### TSC (Technical Steering Committee)
|
2015-05-15 21:51:37 +02:00
|
|
|
|
2023-03-16 18:51:32 +01:00
|
|
|
#### TSC voting members
|
|
|
|
|
2020-06-04 06:59:33 +02:00
|
|
|
<!--lint disable prohibited-strings-->
|
2021-09-18 00:44:08 +02:00
|
|
|
|
2021-04-22 15:59:19 +02:00
|
|
|
* [aduh95](https://github.com/aduh95) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Antoine du Hamel** <<duhamelantoine1995@gmail.com>> (he/him)
|
2024-07-18 00:21:32 +02:00
|
|
|
* [anonrig](https://github.com/anonrig) -
|
|
|
|
**Yagiz Nizipli** <<yagiz@nizipli.com>> (he/him)
|
2023-07-19 22:04:25 +02:00
|
|
|
* [benjamingr](https://github.com/benjamingr) -
|
|
|
|
**Benjamin Gruenbaum** <<benjamingr@gmail.com>>
|
2020-03-11 19:49:06 +01:00
|
|
|
* [BridgeAR](https://github.com/BridgeAR) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Ruben Bridgewater** <<ruben@bridgewater.de>> (he/him)
|
2020-03-24 22:55:02 +01:00
|
|
|
* [gireeshpunathil](https://github.com/gireeshpunathil) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Gireesh Punathil** <<gpunathi@in.ibm.com>> (he/him)
|
2019-04-25 16:07:47 +02:00
|
|
|
* [jasnell](https://github.com/jasnell) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**James M Snell** <<jasnell@gmail.com>> (he/him)
|
2017-06-08 00:14:50 +02:00
|
|
|
* [joyeecheung](https://github.com/joyeecheung) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Joyee Cheung** <<joyeec9h3@gmail.com>> (she/her)
|
2022-09-15 17:03:44 +02:00
|
|
|
* [legendecas](https://github.com/legendecas) -
|
|
|
|
**Chengzhong Wu** <<legendecas@gmail.com>> (he/him)
|
2024-05-15 21:51:14 +02:00
|
|
|
* [marco-ippolito](https://github.com/marco-ippolito) -
|
|
|
|
**Marco Ippolito** <<marcoippolito54@gmail.com>> (he/him)
|
2017-06-08 00:14:50 +02:00
|
|
|
* [mcollina](https://github.com/mcollina) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
|
2016-08-04 01:32:05 +02:00
|
|
|
* [mhdawson](https://github.com/mhdawson) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Michael Dawson** <<midawson@redhat.com>> (he/him)
|
2023-04-05 23:38:46 +02:00
|
|
|
* [MoLow](https://github.com/MoLow) -
|
|
|
|
**Moshe Atlow** <<moshe@atlow.co.il>> (he/him)
|
2022-11-30 18:33:48 +01:00
|
|
|
* [RafaelGSS](https://github.com/RafaelGSS) -
|
|
|
|
**Rafael Gonzaga** <<rafael.nunu@hotmail.com>> (he/him)
|
2021-10-19 19:31:06 +02:00
|
|
|
* [richardlau](https://github.com/richardlau) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Richard Lau** <<rlau@redhat.com>>
|
2021-04-22 15:59:19 +02:00
|
|
|
* [ronag](https://github.com/ronag) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Robert Nagy** <<ronagy@icloud.com>>
|
2023-05-25 16:31:20 +02:00
|
|
|
* [ruyadorno](https://github.com/ruyadorno) -
|
2024-03-16 18:48:59 +01:00
|
|
|
**Ruy Adorno** <<ruy@vlt.sh>> (he/him)
|
2024-02-21 23:26:59 +01:00
|
|
|
* [ShogunPanda](https://github.com/ShogunPanda) -
|
|
|
|
**Paolo Insogna** <<paolo@cowtech.it>> (he/him)
|
2016-12-21 08:15:56 +01:00
|
|
|
* [targos](https://github.com/targos) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Michaël Zasso** <<targos@protonmail.com>> (he/him)
|
2019-09-13 15:28:20 +02:00
|
|
|
* [tniessen](https://github.com/tniessen) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Tobias Nießen** <<tniessen@tnie.de>> (he/him)
|
2015-05-15 21:51:37 +02:00
|
|
|
|
2023-03-16 18:51:32 +01:00
|
|
|
#### TSC regular members
|
2017-05-26 07:58:04 +02:00
|
|
|
|
2024-07-25 10:23:06 +02:00
|
|
|
* [apapirovski](https://github.com/apapirovski) -
|
|
|
|
**Anatoli Papirovski** <<apapirovski@mac.com>> (he/him)
|
2023-04-29 00:45:33 +02:00
|
|
|
* [BethGriggs](https://github.com/BethGriggs) -
|
|
|
|
**Beth Griggs** <<bethanyngriggs@gmail.com>> (she/her)
|
2017-09-26 19:28:03 +02:00
|
|
|
* [bnoordhuis](https://github.com/bnoordhuis) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Ben Noordhuis** <<info@bnoordhuis.nl>>
|
2023-11-24 16:06:29 +01:00
|
|
|
* [cjihrig](https://github.com/cjihrig) -
|
|
|
|
**Colin Ihrig** <<cjihrig@gmail.com>> (he/him)
|
2021-11-21 17:10:52 +01:00
|
|
|
* [codebytere](https://github.com/codebytere) -
|
|
|
|
**Shelley Vohr** <<shelley.vohr@gmail.com>> (she/her)
|
2024-07-25 23:37:39 +02:00
|
|
|
* [GeoffreyBooth](https://github.com/GeoffreyBooth) -
|
|
|
|
**Geoffrey Booth** <<webadmin@geoffreybooth.com>> (he/him)
|
2023-10-19 19:40:28 +02:00
|
|
|
* [Trott](https://github.com/Trott) -
|
|
|
|
**Rich Trott** <<rtrott@gmail.com>> (he/him)
|
2023-03-16 18:51:32 +01:00
|
|
|
|
|
|
|
<details>
|
|
|
|
|
|
|
|
<summary>TSC emeriti members</summary>
|
|
|
|
|
|
|
|
#### TSC emeriti members
|
|
|
|
|
2023-04-27 23:26:11 +02:00
|
|
|
* [addaleax](https://github.com/addaleax) -
|
|
|
|
**Anna Henningsen** <<anna@addaleax.net>> (she/her)
|
2024-04-14 11:02:30 +02:00
|
|
|
* [ChALkeR](https://github.com/ChALkeR) -
|
|
|
|
**Сковорода Никита Андреевич** <<chalkerx@gmail.com>> (he/him)
|
2023-03-16 18:51:32 +01:00
|
|
|
* [chrisdickinson](https://github.com/chrisdickinson) -
|
|
|
|
**Chris Dickinson** <<christopher.s.dickinson@gmail.com>>
|
2024-03-27 15:19:15 +01:00
|
|
|
* [danbev](https://github.com/danbev) -
|
|
|
|
**Daniel Bevenius** <<daniel.bevenius@gmail.com>> (he/him)
|
2024-07-04 17:56:54 +02:00
|
|
|
* [danielleadams](https://github.com/danielleadams) -
|
|
|
|
**Danielle Adams** <<adamzdanielle@gmail.com>> (she/her)
|
2018-04-11 19:49:36 +02:00
|
|
|
* [evanlucas](https://github.com/evanlucas) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Evan Lucas** <<evanlucas@me.com>> (he/him)
|
2024-03-27 15:19:15 +01:00
|
|
|
* [fhinkel](https://github.com/fhinkel) -
|
|
|
|
**Franziska Hinkelmann** <<franziska.hinkelmann@gmail.com>> (she/her)
|
2020-02-10 19:56:58 +01:00
|
|
|
* [Fishrock123](https://github.com/Fishrock123) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Jeremiah Senkpiel** <<fishrock123@rocketmail.com>> (he/they)
|
2024-03-25 05:39:30 +01:00
|
|
|
* [gabrielschulhof](https://github.com/gabrielschulhof) -
|
|
|
|
**Gabriel Schulhof** <<gabrielschulhof@gmail.com>>
|
2018-10-03 10:32:28 +02:00
|
|
|
* [gibfahn](https://github.com/gibfahn) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Gibson Fahnestock** <<gibfahn@gmail.com>> (he/him)
|
2018-02-13 08:09:44 +01:00
|
|
|
* [indutny](https://github.com/indutny) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Fedor Indutny** <<fedor@indutny.com>>
|
2017-05-26 07:58:04 +02:00
|
|
|
* [isaacs](https://github.com/isaacs) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Isaac Z. Schlueter** <<i@izs.me>>
|
2018-01-02 18:47:19 +01:00
|
|
|
* [joshgav](https://github.com/joshgav) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Josh Gavant** <<josh.gavant@outlook.com>>
|
2022-04-16 19:16:00 +02:00
|
|
|
* [mmarchini](https://github.com/mmarchini) -
|
|
|
|
**Mary Marchini** <<oss@mmarchini.me>> (she/her)
|
2024-03-27 15:19:15 +01:00
|
|
|
* [mscdex](https://github.com/mscdex) -
|
|
|
|
**Brian White** <<mscdex@mscdex.net>>
|
2024-06-28 22:38:55 +02:00
|
|
|
* [MylesBorins](https://github.com/MylesBorins) -
|
|
|
|
**Myles Borins** <<myles.borins@gmail.com>> (he/him)
|
2017-10-02 05:43:56 +02:00
|
|
|
* [nebrius](https://github.com/nebrius) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Bryan Hughes** <<bryan@nebri.us>>
|
2019-04-03 22:07:42 +02:00
|
|
|
* [ofrobots](https://github.com/ofrobots) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Ali Ijaz Sheikh** <<ofrobots@google.com>> (he/him)
|
2017-05-26 07:58:04 +02:00
|
|
|
* [orangemocha](https://github.com/orangemocha) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Alexis Campailla** <<orangemocha@nodejs.org>>
|
2017-05-26 07:58:04 +02:00
|
|
|
* [piscisaureus](https://github.com/piscisaureus) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Bert Belder** <<bertbelder@gmail.com>>
|
2024-01-12 09:58:53 +01:00
|
|
|
* [RaisinTen](https://github.com/RaisinTen) -
|
|
|
|
**Darshan Sen** <<raisinten@gmail.com>> (he/him)
|
2024-03-27 15:19:15 +01:00
|
|
|
* [rvagg](https://github.com/rvagg) -
|
|
|
|
**Rod Vagg** <<r@va.gg>>
|
2020-06-28 06:29:58 +02:00
|
|
|
* [sam-github](https://github.com/sam-github) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Sam Roberts** <<vieuxtech@gmail.com>>
|
2017-10-14 02:11:52 +02:00
|
|
|
* [shigeki](https://github.com/shigeki) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Shigeki Ohtsu** <<ohtsu@ohtsu.org>> (he/him)
|
2020-03-03 07:43:02 +01:00
|
|
|
* [thefourtheye](https://github.com/thefourtheye) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Sakthipriyan Vairamani** <<thechargingvolcano@gmail.com>> (he/him)
|
2024-04-24 06:24:48 +02:00
|
|
|
* [TimothyGu](https://github.com/TimothyGu) -
|
|
|
|
**Tiancheng "Timothy" Gu** <<timothygu99@gmail.com>> (he/him)
|
2018-04-12 21:25:55 +02:00
|
|
|
* [trevnorris](https://github.com/trevnorris) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Trevor Norris** <<trev.norris@gmail.com>>
|
2017-05-26 07:58:04 +02:00
|
|
|
|
2021-07-09 08:40:22 +02:00
|
|
|
</details>
|
|
|
|
|
2021-08-21 02:54:28 +02:00
|
|
|
<!-- node-core-utils and find-inactive-collaborators.mjs depend on the format
|
|
|
|
of the collaborator list. If the format changes, those utilities need to be
|
|
|
|
tested and updated. -->
|
2021-09-18 00:44:08 +02:00
|
|
|
|
2015-05-15 21:51:37 +02:00
|
|
|
### Collaborators
|
|
|
|
|
2024-09-23 21:00:23 +02:00
|
|
|
* [abmusse](https://github.com/abmusse) -
|
|
|
|
**Abdirahim Musse** <<abdirahim.musse@ibm.com>>
|
2017-05-29 17:53:30 +02:00
|
|
|
* [addaleax](https://github.com/addaleax) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Anna Henningsen** <<anna@addaleax.net>> (she/her)
|
2020-10-07 16:33:17 +02:00
|
|
|
* [aduh95](https://github.com/aduh95) -
|
2024-09-11 18:03:21 +02:00
|
|
|
**Antoine du Hamel** <<duhamelantoine1995@gmail.com>> (he/him) - [Support me](https://github.com/sponsors/aduh95)
|
2022-10-14 18:28:22 +02:00
|
|
|
* [anonrig](https://github.com/anonrig) -
|
2024-08-30 17:39:49 +02:00
|
|
|
**Yagiz Nizipli** <<yagiz@nizipli.com>> (he/him) - [Support me](https://github.com/sponsors/anonrig)
|
2017-10-18 20:53:48 +02:00
|
|
|
* [apapirovski](https://github.com/apapirovski) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Anatoli Papirovski** <<apapirovski@mac.com>> (he/him)
|
2023-07-13 14:52:08 +02:00
|
|
|
* [atlowChemi](https://github.com/atlowChemi) -
|
|
|
|
**Chemi Atlow** <<chemi@atlow.co.il>> (he/him)
|
2021-09-11 07:37:26 +02:00
|
|
|
* [Ayase-252](https://github.com/Ayase-252) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Qingyu Deng** <<i@ayase-lab.com>>
|
2016-08-04 01:32:05 +02:00
|
|
|
* [bengl](https://github.com/bengl) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Bryan English** <<bryan@bryanenglish.com>> (he/him)
|
2016-08-04 01:32:05 +02:00
|
|
|
* [benjamingr](https://github.com/benjamingr) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Benjamin Gruenbaum** <<benjamingr@gmail.com>>
|
2018-03-26 13:36:46 +02:00
|
|
|
* [BethGriggs](https://github.com/BethGriggs) -
|
2022-07-25 21:26:12 +02:00
|
|
|
**Beth Griggs** <<bethanyngriggs@gmail.com>> (she/her)
|
2021-12-06 18:16:29 +01:00
|
|
|
* [bnb](https://github.com/bnb) -
|
2023-10-01 22:07:21 +02:00
|
|
|
**Tierney Cyren** <<hello@bnb.im>> (they/them)
|
2022-02-22 17:22:42 +01:00
|
|
|
* [bnoordhuis](https://github.com/bnoordhuis) -
|
|
|
|
**Ben Noordhuis** <<info@bnoordhuis.nl>>
|
2017-08-16 18:24:17 +02:00
|
|
|
* [BridgeAR](https://github.com/BridgeAR) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Ruben Bridgewater** <<ruben@bridgewater.de>> (he/him)
|
2019-05-03 19:00:33 +02:00
|
|
|
* [cclauss](https://github.com/cclauss) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Christian Clauss** <<cclauss@me.com>> (he/him)
|
2017-05-29 17:53:30 +02:00
|
|
|
* [cjihrig](https://github.com/cjihrig) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Colin Ihrig** <<cjihrig@gmail.com>> (he/him)
|
2018-07-07 22:13:49 +02:00
|
|
|
* [codebytere](https://github.com/codebytere) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Shelley Vohr** <<shelley.vohr@gmail.com>> (she/her)
|
2022-08-16 10:29:17 +02:00
|
|
|
* [cola119](https://github.com/cola119) -
|
|
|
|
**Kohei Ueno** <<kohei.ueno119@gmail.com>> (he/him)
|
2022-08-23 10:41:04 +02:00
|
|
|
* [daeyeon](https://github.com/daeyeon) -
|
|
|
|
**Daeyeon Jeong** <<daeyeon.dev@gmail.com>> (he/him)
|
2023-02-18 07:48:39 +01:00
|
|
|
* [debadree25](https://github.com/debadree25) -
|
|
|
|
**Debadree Chatterjee** <<debadree333@gmail.com>> (he/him)
|
2023-01-31 16:03:49 +01:00
|
|
|
* [deokjinkim](https://github.com/deokjinkim) -
|
|
|
|
**Deokjin Kim** <<deokjin81.kim@gmail.com>> (he/him)
|
2017-01-18 22:09:36 +01:00
|
|
|
* [edsadr](https://github.com/edsadr) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Adrian Estrada** <<edsadr@gmail.com>> (he/him)
|
2024-07-17 19:07:41 +02:00
|
|
|
* [ErickWendel](https://github.com/ErickWendel) -
|
2022-08-01 22:46:52 +02:00
|
|
|
**Erick Wendel** <<erick.workspace@gmail.com>> (he/him)
|
2023-10-25 18:45:51 +02:00
|
|
|
* [Ethan-Arrowood](https://github.com/Ethan-Arrowood) -
|
|
|
|
**Ethan Arrowood** <<ethan@arrowood.dev>> (he/him)
|
2022-07-23 13:42:06 +02:00
|
|
|
* [F3n67u](https://github.com/F3n67u) -
|
|
|
|
**Feng Yu** <<F3n67u@outlook.com>> (he/him)
|
2024-04-13 17:03:43 +02:00
|
|
|
* [fhinkel](https://github.com/fhinkel) -
|
|
|
|
**Franziska Hinkelmann** <<franziska.hinkelmann@gmail.com>> (she/her)
|
2020-04-02 19:30:13 +02:00
|
|
|
* [Flarna](https://github.com/Flarna) -
|
2023-11-11 15:50:06 +01:00
|
|
|
**Gerhard Stöbich** <<deb2001-github@yahoo.de>> (he/they)
|
2017-08-08 18:10:47 +02:00
|
|
|
* [gabrielschulhof](https://github.com/gabrielschulhof) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Gabriel Schulhof** <<gabrielschulhof@gmail.com>>
|
2019-06-20 13:25:18 +02:00
|
|
|
* [gengjiawen](https://github.com/gengjiawen) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Jiawen Geng** <<technicalcute@gmail.com>>
|
2024-07-17 19:07:41 +02:00
|
|
|
* [GeoffreyBooth](https://github.com/GeoffreyBooth) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Geoffrey Booth** <<webadmin@geoffreybooth.com>> (he/him)
|
2017-06-28 19:01:49 +02:00
|
|
|
* [gireeshpunathil](https://github.com/gireeshpunathil) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Gireesh Punathil** <<gpunathi@in.ibm.com>> (he/him)
|
2017-11-21 18:52:28 +01:00
|
|
|
* [guybedford](https://github.com/guybedford) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Guy Bedford** <<guybedford@gmail.com>> (he/him)
|
2023-10-17 21:31:49 +02:00
|
|
|
* [H4ad](https://github.com/H4ad) -
|
|
|
|
**Vinícius Lourenço Claro Cardoso** <<contact@viniciusl.com.br>> (he/him)
|
2020-07-18 09:31:44 +02:00
|
|
|
* [HarshithaKP](https://github.com/HarshithaKP) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Harshitha K P** <<harshitha014@gmail.com>> (she/her)
|
2020-04-09 05:29:31 +02:00
|
|
|
* [himself65](https://github.com/himself65) -
|
2022-05-09 22:39:27 +02:00
|
|
|
**Zeyu "Alex" Yang** <<himself65@outlook.com>> (he/him)
|
2024-07-24 05:48:30 +02:00
|
|
|
* [jakecastelli](https://github.com/jakecastelli) -
|
|
|
|
**Jake Yuesong Li** <<jake.yuesong@gmail.com>> (he/him)
|
2022-03-02 14:39:38 +01:00
|
|
|
* [JakobJingleheimer](https://github.com/JakobJingleheimer) -
|
|
|
|
**Jacob Smith** <<jacob@frende.me>> (he/him)
|
2017-05-29 17:53:30 +02:00
|
|
|
* [jasnell](https://github.com/jasnell) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**James M Snell** <<jasnell@gmail.com>> (he/him)
|
2024-10-25 12:10:39 +02:00
|
|
|
* [jazelly](https://github.com/jazelly) -
|
|
|
|
**Jason Zhang** <<xzha4350@gmail.com>> (he/him)
|
2017-04-15 17:30:42 +02:00
|
|
|
* [jkrems](https://github.com/jkrems) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Jan Krems** <<jan.krems@gmail.com>> (he/him)
|
2017-05-29 17:53:30 +02:00
|
|
|
* [joyeecheung](https://github.com/joyeecheung) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Joyee Cheung** <<joyeec9h3@gmail.com>> (she/her)
|
2020-04-17 20:48:30 +02:00
|
|
|
* [juanarbol](https://github.com/juanarbol) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Juan José Arboleda** <<soyjuanarbol@gmail.com>> (he/him)
|
2016-08-04 01:32:05 +02:00
|
|
|
* [JungMinu](https://github.com/JungMinu) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Minwoo Jung** <<nodecorelab@gmail.com>> (he/him)
|
2023-04-11 15:55:42 +02:00
|
|
|
* [KhafraDev](https://github.com/KhafraDev) -
|
|
|
|
**Matthew Aitken** <<maitken033380023@gmail.com>> (he/him)
|
2023-06-13 16:53:32 +02:00
|
|
|
* [kvakil](https://github.com/kvakil) -
|
|
|
|
**Keyhan Vakil** <<kvakil@sylph.kvakil.me>>
|
2019-10-25 16:39:28 +02:00
|
|
|
* [legendecas](https://github.com/legendecas) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Chengzhong Wu** <<legendecas@gmail.com>> (he/him)
|
2024-01-26 23:10:30 +01:00
|
|
|
* [lemire](https://github.com/lemire) -
|
2024-01-29 23:09:16 +01:00
|
|
|
**Daniel Lemire** <<daniel@lemire.me>>
|
2024-07-17 19:07:41 +02:00
|
|
|
* [Linkgoron](https://github.com/Linkgoron) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Nitzan Uziely** <<linkgoron@gmail.com>>
|
2022-05-10 18:13:04 +02:00
|
|
|
* [LiviaMedeiros](https://github.com/LiviaMedeiros) -
|
|
|
|
**LiviaMedeiros** <<livia@cirno.name>>
|
2016-08-30 07:53:41 +02:00
|
|
|
* [lpinca](https://github.com/lpinca) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Luigi Pinca** <<luigipinca@gmail.com>> (he/him)
|
2022-10-25 22:45:33 +02:00
|
|
|
* [lukekarrys](https://github.com/lukekarrys) -
|
2022-10-31 17:25:40 +01:00
|
|
|
**Luke Karrys** <<luke@lukekarrys.com>> (he/him)
|
2021-01-26 13:29:11 +01:00
|
|
|
* [Lxxyx](https://github.com/Lxxyx) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Zijian Liu** <<lxxyxzj@gmail.com>> (he/him)
|
2023-02-24 23:35:16 +01:00
|
|
|
* [marco-ippolito](https://github.com/marco-ippolito) -
|
2024-09-06 07:12:30 +02:00
|
|
|
**Marco Ippolito** <<marcoippolito54@gmail.com>> (he/him) - [Support me](https://github.com/sponsors/marco-ippolito)
|
2022-02-15 15:43:30 +01:00
|
|
|
* [marsonya](https://github.com/marsonya) -
|
|
|
|
**Akhil Marsonya** <<akhil.marsonya27@gmail.com>> (he/him)
|
2024-07-18 15:55:58 +02:00
|
|
|
* [MattiasBuelens](https://github.com/MattiasBuelens) -
|
|
|
|
**Mattias Buelens** <<mattias@buelens.com>> (he/him)
|
2017-05-29 17:53:30 +02:00
|
|
|
* [mcollina](https://github.com/mcollina) -
|
2024-09-07 11:47:13 +02:00
|
|
|
**Matteo Collina** <<matteo.collina@gmail.com>> (he/him) - [Support me](https://github.com/sponsors/mcollina)
|
2022-04-02 14:16:17 +02:00
|
|
|
* [meixg](https://github.com/meixg) -
|
|
|
|
**Xuguang Mei** <<meixuguang@gmail.com>> (he/him)
|
2017-05-29 17:53:30 +02:00
|
|
|
* [mhdawson](https://github.com/mhdawson) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Michael Dawson** <<midawson@redhat.com>> (he/him)
|
2020-03-31 19:08:49 +02:00
|
|
|
* [mildsunrise](https://github.com/mildsunrise) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Alba Mendez** <<me@alba.sh>> (she/her)
|
2022-08-11 15:18:17 +02:00
|
|
|
* [MoLow](https://github.com/MoLow) -
|
|
|
|
**Moshe Atlow** <<moshe@atlow.co.il>> (he/him)
|
2023-11-11 13:27:44 +01:00
|
|
|
* [MrJithil](https://github.com/MrJithil) -
|
|
|
|
**Jithil P Ponnan** <<jithil@outlook.com>> (he/him)
|
2023-05-03 19:21:36 +02:00
|
|
|
* [ovflowd](https://github.com/ovflowd) -
|
|
|
|
**Claudio Wunder** <<cwunder@gnome.org>> (he/they)
|
2021-01-05 16:45:29 +01:00
|
|
|
* [panva](https://github.com/panva) -
|
2023-01-06 20:02:49 +01:00
|
|
|
**Filip Skokan** <<panva.ip@gmail.com>> (he/him)
|
2024-05-07 14:42:51 +02:00
|
|
|
* [pimterry](https://github.com/pimterry) -
|
|
|
|
**Tim Perry** <<pimterry@gmail.com>> (he/him)
|
2024-11-02 15:14:40 +01:00
|
|
|
* [pmarchini](https://github.com/pmarchini) -
|
2024-10-09 16:47:31 +02:00
|
|
|
**Pietro Marchini** <<pietro.marchini94@gmail.com>> (he/him)
|
2017-05-06 00:41:29 +02:00
|
|
|
* [Qard](https://github.com/Qard) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Stephen Belanger** <<admin@stephenbelanger.com>> (he/him)
|
2022-04-13 14:58:02 +02:00
|
|
|
* [RafaelGSS](https://github.com/RafaelGSS) -
|
|
|
|
**Rafael Gonzaga** <<rafael.nunu@hotmail.com>> (he/him)
|
2017-03-24 13:27:38 +01:00
|
|
|
* [richardlau](https://github.com/richardlau) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Richard Lau** <<rlau@redhat.com>>
|
2024-04-13 17:03:43 +02:00
|
|
|
* [rluvaton](https://github.com/rluvaton) -
|
|
|
|
**Raz Luvaton** <<rluvaton@gmail.com>> (he/him)
|
2020-02-06 02:57:07 +01:00
|
|
|
* [ronag](https://github.com/ronag) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Robert Nagy** <<ronagy@icloud.com>>
|
2020-07-10 16:36:04 +02:00
|
|
|
* [ruyadorno](https://github.com/ruyadorno) -
|
2024-03-16 18:48:59 +01:00
|
|
|
**Ruy Adorno** <<ruy@vlt.sh>> (he/him)
|
2016-08-04 01:32:05 +02:00
|
|
|
* [santigimeno](https://github.com/santigimeno) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Santiago Gimeno** <<santiago.gimeno@gmail.com>>
|
2022-03-16 11:37:28 +01:00
|
|
|
* [ShogunPanda](https://github.com/ShogunPanda) -
|
|
|
|
**Paolo Insogna** <<paolo@cowtech.it>> (he/him)
|
2016-08-04 01:32:05 +02:00
|
|
|
* [srl295](https://github.com/srl295) -
|
2022-11-01 06:25:00 +01:00
|
|
|
**Steven R Loomis** <<srl295@gmail.com>>
|
2024-05-23 16:28:18 +02:00
|
|
|
* [StefanStojanovic](https://github.com/StefanStojanovic) -
|
|
|
|
**Stefan Stojanovic** <<stefan.stojanovic@janeasystems.com>> (he/him)
|
2020-07-13 17:39:17 +02:00
|
|
|
* [sxa](https://github.com/sxa) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Stewart X Addison** <<sxa@redhat.com>> (he/him)
|
2017-05-29 17:53:30 +02:00
|
|
|
* [targos](https://github.com/targos) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Michaël Zasso** <<targos@protonmail.com>> (he/him)
|
2022-08-04 13:42:17 +02:00
|
|
|
* [theanarkh](https://github.com/theanarkh) -
|
|
|
|
**theanarkh** <<theratliter@gmail.com>> (he/him)
|
2017-06-01 17:07:47 +02:00
|
|
|
* [tniessen](https://github.com/tniessen) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Tobias Nießen** <<tniessen@tnie.de>> (he/him)
|
2018-03-16 06:05:53 +01:00
|
|
|
* [trivikr](https://github.com/trivikr) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Trivikram Kamat** <<trivikr.dev@gmail.com>>
|
2017-05-29 17:53:30 +02:00
|
|
|
* [Trott](https://github.com/Trott) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Rich Trott** <<rtrott@gmail.com>> (he/him)
|
2024-07-17 19:07:41 +02:00
|
|
|
* [UlisesGascon](https://github.com/UlisesGascon) -
|
2024-03-06 20:20:11 +01:00
|
|
|
**Ulises Gascón** <<ulisesgascongonzalez@gmail.com>> (he/him)
|
2023-06-22 22:26:52 +02:00
|
|
|
* [vmoroz](https://github.com/vmoroz) -
|
|
|
|
**Vladimir Morozov** <<vmorozov@microsoft.com>> (he/him)
|
2022-11-18 03:21:35 +01:00
|
|
|
* [VoltrexKeyva](https://github.com/VoltrexKeyva) -
|
2021-11-18 06:08:06 +01:00
|
|
|
**Mohammed Keyvanzadeh** <<mohammadkeyvanzade94@gmail.com>> (he/him)
|
2017-03-03 18:17:24 +01:00
|
|
|
* [watilde](https://github.com/watilde) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Daijiro Wachi** <<daijiro.wachi@gmail.com>> (he/him)
|
2024-02-20 12:23:38 +01:00
|
|
|
* [zcbenz](https://github.com/zcbenz) -
|
2024-03-31 08:53:09 +02:00
|
|
|
**Cheng Zhao** <<zcbenz@gmail.com>> (he/him)
|
2024-04-13 17:03:43 +02: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 07:03:24 +02:00
|
|
|
|
2021-07-09 08:40:22 +02:00
|
|
|
<details>
|
|
|
|
|
|
|
|
<summary>Emeriti</summary>
|
|
|
|
|
2021-08-21 02:54:28 +02:00
|
|
|
<!-- find-inactive-collaborators.mjs depends on the format of the emeriti list.
|
|
|
|
If the format changes, those utilities need to be tested and updated. -->
|
2021-09-18 00:44:08 +02:00
|
|
|
|
2021-02-06 17:17:21 +01:00
|
|
|
### Collaborator emeriti
|
2017-10-13 06:12:52 +02:00
|
|
|
|
2022-04-18 06:10:53 +02:00
|
|
|
* [ak239](https://github.com/ak239) -
|
|
|
|
**Aleksei Koziatinskii** <<ak239spb@gmail.com>>
|
2019-05-03 04:14:20 +02:00
|
|
|
* [andrasq](https://github.com/andrasq) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Andras** <<andras@kinvey.com>>
|
2021-07-09 00:29:52 +02:00
|
|
|
* [AndreasMadsen](https://github.com/AndreasMadsen) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Andreas Madsen** <<amwebdk@gmail.com>> (he/him)
|
2024-04-13 17:03:43 +02:00
|
|
|
* [AnnaMag](https://github.com/AnnaMag) -
|
|
|
|
**Anna M. Kedzierska** <<anna.m.kedzierska@gmail.com>>
|
2024-04-14 11:02:30 +02:00
|
|
|
* [antsmartian](https://github.com/antsmartian) -
|
|
|
|
**Anto Aravinth** <<anto.aravinth.cse@gmail.com>> (he/him)
|
2020-02-28 06:07:30 +01:00
|
|
|
* [aqrln](https://github.com/aqrln) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Alexey Orlenko** <<eaglexrlnk@gmail.com>> (he/him)
|
2024-04-14 11:02:30 +02:00
|
|
|
* [AshCripps](https://github.com/AshCripps) -
|
|
|
|
**Ash Cripps** <<email@ashleycripps.co.uk>>
|
2023-02-18 01:49:39 +01:00
|
|
|
* [bcoe](https://github.com/bcoe) -
|
|
|
|
**Ben Coe** <<bencoe@gmail.com>> (he/him)
|
2024-04-14 11:02:30 +02:00
|
|
|
* [bmeck](https://github.com/bmeck) -
|
|
|
|
**Bradley Farias** <<bradley.meck@gmail.com>>
|
2021-09-15 06:12:04 +02:00
|
|
|
* [bmeurer](https://github.com/bmeurer) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Benedikt Meurer** <<benedikt.meurer@gmail.com>>
|
2022-04-04 06:10:10 +02:00
|
|
|
* [boneskull](https://github.com/boneskull) -
|
|
|
|
**Christopher Hiller** <<boneskull@boneskull.com>> (he/him)
|
2019-11-04 03:59:36 +01:00
|
|
|
* [brendanashworth](https://github.com/brendanashworth) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Brendan Ashworth** <<brendan.ashworth@me.com>>
|
2022-06-11 09:09:24 +02:00
|
|
|
* [bzoz](https://github.com/bzoz) -
|
|
|
|
**Bartosz Sosnowski** <<bartosz@janeasystems.com>>
|
2020-02-11 11:44:44 +01:00
|
|
|
* [calvinmetcalf](https://github.com/calvinmetcalf) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Calvin Metcalf** <<calvin.metcalf@gmail.com>>
|
2024-04-14 11:02:30 +02:00
|
|
|
* [ChALkeR](https://github.com/ChALkeR) -
|
|
|
|
**Сковорода Никита Андреевич** <<chalkerx@gmail.com>> (he/him)
|
2019-05-14 23:47:12 +02:00
|
|
|
* [chrisdickinson](https://github.com/chrisdickinson) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Chris Dickinson** <<christopher.s.dickinson@gmail.com>>
|
2020-03-08 19:17:51 +01:00
|
|
|
* [claudiorodriguez](https://github.com/claudiorodriguez) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Claudio Rodriguez** <<cjrodr@yahoo.com>>
|
2024-04-14 11:02:30 +02:00
|
|
|
* [danbev](https://github.com/danbev) -
|
|
|
|
**Daniel Bevenius** <<daniel.bevenius@gmail.com>> (he/him)
|
2024-10-21 15:25:45 +02:00
|
|
|
* [danielleadams](https://github.com/danielleadams) -
|
|
|
|
**Danielle Adams** <<adamzdanielle@gmail.com>> (she/her)
|
2019-11-04 03:59:36 +01:00
|
|
|
* [DavidCai1993](https://github.com/DavidCai1993) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**David Cai** <<davidcai1993@yahoo.com>> (he/him)
|
2021-12-31 01:16:22 +01:00
|
|
|
* [davisjam](https://github.com/davisjam) -
|
|
|
|
**Jamie Davis** <<davisjam@vt.edu>> (he/him)
|
2024-02-28 14:38:25 +01:00
|
|
|
* [devnexen](https://github.com/devnexen) -
|
|
|
|
**David Carlier** <<devnexen@gmail.com>>
|
2024-04-14 11:02:30 +02:00
|
|
|
* [devsnek](https://github.com/devsnek) -
|
|
|
|
**Gus Caplan** <<me@gus.host>> (they/them)
|
2020-07-04 04:47:43 +02:00
|
|
|
* [digitalinfinity](https://github.com/digitalinfinity) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Hitesh Kanwathirtha** <<digitalinfinity@gmail.com>> (he/him)
|
2022-10-19 20:39:46 +02:00
|
|
|
* [dmabupt](https://github.com/dmabupt) -
|
|
|
|
**Xu Meng** <<dmabupt@gmail.com>> (he/him)
|
2024-11-02 15:14:40 +01:00
|
|
|
* [dnlup](https://github.com/dnlup) -
|
2022-09-18 11:04:55 +02:00
|
|
|
**dnlup** <<dnlup.dev@gmail.com>>
|
2020-02-11 11:42:17 +01:00
|
|
|
* [eljefedelrodeodeljefe](https://github.com/eljefedelrodeodeljefe) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Robert Jefe Lindstaedt** <<robert.lindstaedt@gmail.com>>
|
2020-02-11 11:44:44 +01:00
|
|
|
* [estliberitas](https://github.com/estliberitas) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Alexander Makarenko** <<estliberitas@gmail.com>>
|
2021-12-22 11:44:18 +01:00
|
|
|
* [eugeneo](https://github.com/eugeneo) -
|
|
|
|
**Eugene Ostroukhov** <<eostroukhov@google.com>>
|
2023-01-21 15:19:48 +01:00
|
|
|
* [evanlucas](https://github.com/evanlucas) -
|
|
|
|
**Evan Lucas** <<evanlucas@me.com>> (he/him)
|
2019-05-09 03:18:38 +02:00
|
|
|
* [firedfox](https://github.com/firedfox) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Daniel Wang** <<wangyang0123@gmail.com>>
|
2021-10-25 19:14:01 +02:00
|
|
|
* [Fishrock123](https://github.com/Fishrock123) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Jeremiah Senkpiel** <<fishrock123@rocketmail.com>> (he/they)
|
2021-07-27 04:28:59 +02:00
|
|
|
* [gdams](https://github.com/gdams) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**George Adams** <<gadams@microsoft.com>> (he/him)
|
2021-09-15 06:12:04 +02:00
|
|
|
* [geek](https://github.com/geek) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Wyatt Preul** <<wpreul@gmail.com>>
|
2020-07-04 04:45:59 +02:00
|
|
|
* [gibfahn](https://github.com/gibfahn) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Gibson Fahnestock** <<gibfahn@gmail.com>> (he/him)
|
2020-02-28 04:52:54 +01:00
|
|
|
* [glentiki](https://github.com/glentiki) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Glen Keane** <<glenkeane.94@gmail.com>> (he/him)
|
2022-04-03 17:27:19 +02:00
|
|
|
* [hashseed](https://github.com/hashseed) -
|
|
|
|
**Yang Guo** <<yangguo@chromium.org>> (he/him)
|
2022-06-13 20:15:28 +02:00
|
|
|
* [hiroppy](https://github.com/hiroppy) -
|
|
|
|
**Yuta Hiroto** <<hello@hiroppy.me>> (he/him)
|
2024-04-03 06:19:48 +02:00
|
|
|
* [iansu](https://github.com/iansu) -
|
|
|
|
**Ian Sutherland** <<ian@iansutherland.ca>>
|
2020-03-08 19:17:51 +01:00
|
|
|
* [iarna](https://github.com/iarna) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Rebecca Turner** <<me@re-becca.org>>
|
2018-06-11 23:52:37 +02:00
|
|
|
* [imran-iq](https://github.com/imran-iq) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Imran Iqbal** <<imran@imraniqbal.org>>
|
2019-11-04 03:59:36 +01:00
|
|
|
* [imyller](https://github.com/imyller) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Ilkka Myller** <<ilkka.myller@nodefield.com>>
|
2023-02-01 05:25:38 +01:00
|
|
|
* [indutny](https://github.com/indutny) -
|
|
|
|
**Fedor Indutny** <<fedor@indutny.com>>
|
2017-10-13 06:12:52 +02:00
|
|
|
* [isaacs](https://github.com/isaacs) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Isaac Z. Schlueter** <<i@izs.me>>
|
2020-03-08 19:17:51 +01:00
|
|
|
* [italoacasas](https://github.com/italoacasas) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Italo A. Casas** <<me@italoacasas.com>> (he/him)
|
2023-11-29 22:04:19 +01:00
|
|
|
* [JacksonTian](https://github.com/JacksonTian) -
|
|
|
|
**Jackson Tian** <<shyvo1987@gmail.com>>
|
2019-11-04 03:59:36 +01:00
|
|
|
* [jasongin](https://github.com/jasongin) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Jason Ginchereau** <<jasongin@microsoft.com>>
|
2020-02-28 06:04:46 +01:00
|
|
|
* [jbergstroem](https://github.com/jbergstroem) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Johan Bergström** <<bugs@bergstroem.nu>>
|
2021-07-14 13:38:06 +02:00
|
|
|
* [jdalton](https://github.com/jdalton) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**John-David Dalton** <<john.david.dalton@gmail.com>>
|
2019-05-15 04:14:36 +02:00
|
|
|
* [jhamhader](https://github.com/jhamhader) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Yuval Brik** <<yuval@brik.org.il>>
|
2022-02-23 06:12:18 +01:00
|
|
|
* [joaocgreis](https://github.com/joaocgreis) -
|
|
|
|
**João Reis** <<reis@janeasystems.com>>
|
2024-10-09 09:00:12 +02:00
|
|
|
* [joesepi](https://github.com/joesepi) -
|
|
|
|
**Joe Sepi** <<sepi@joesepi.com>> (he/him)
|
2019-10-30 14:30:36 +01:00
|
|
|
* [joshgav](https://github.com/joshgav) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Josh Gavant** <<josh.gavant@outlook.com>>
|
2020-02-19 05:18:31 +01:00
|
|
|
* [julianduque](https://github.com/julianduque) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Julian Duque** <<julianduquej@gmail.com>> (he/him)
|
2020-07-08 14:44:06 +02:00
|
|
|
* [kfarnung](https://github.com/kfarnung) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Kyle Farnung** <<kfarnung@microsoft.com>> (he/him)
|
2019-10-30 14:30:36 +01:00
|
|
|
* [kunalspathak](https://github.com/kunalspathak) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Kunal Pathak** <<kunal.pathak@microsoft.com>>
|
2024-08-07 21:20:40 +02:00
|
|
|
* [kuriyosh](https://github.com/kuriyosh) -
|
|
|
|
**Yoshiki Kurihara** <<yosyos0306@gmail.com>> (he/him)
|
2021-07-23 19:41:18 +02:00
|
|
|
* [lance](https://github.com/lance) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Lance Ball** <<lball@redhat.com>> (he/him)
|
2023-08-23 06:21:02 +02:00
|
|
|
* [Leko](https://github.com/Leko) -
|
|
|
|
**Shingo Inoue** <<leko.noor@gmail.com>> (he/him)
|
2019-10-30 14:30:36 +01:00
|
|
|
* [lucamaraschi](https://github.com/lucamaraschi) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Luca Maraschi** <<luca.maraschi@gmail.com>> (he/him)
|
2022-06-11 09:09:24 +02:00
|
|
|
* [lundibundi](https://github.com/lundibundi) -
|
|
|
|
**Denys Otrishko** <<shishugi@gmail.com>> (he/him)
|
2017-10-13 06:12:52 +02:00
|
|
|
* [lxe](https://github.com/lxe) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Aleksey Smolenchuk** <<lxe@lxe.co>>
|
2020-02-28 04:57:56 +01:00
|
|
|
* [maclover7](https://github.com/maclover7) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Jon Moss** <<me@jonathanmoss.me>> (he/him)
|
2022-01-13 20:37:42 +01:00
|
|
|
* [mafintosh](https://github.com/mafintosh) -
|
|
|
|
**Mathias Buus** <<mathiasbuus@gmail.com>> (he/him)
|
2018-01-05 09:05:41 +01:00
|
|
|
* [matthewloring](https://github.com/matthewloring) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Matthew Loring** <<mattloring@google.com>>
|
2024-07-10 06:13:36 +02:00
|
|
|
* [Mesteery](https://github.com/Mesteery) -
|
|
|
|
**Mestery** <<mestery@protonmail.com>> (he/him)
|
2018-06-11 23:52:37 +02:00
|
|
|
* [micnic](https://github.com/micnic) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Nicu Micleușanu** <<micnic90@gmail.com>> (he/him)
|
2018-04-17 20:41:21 +02:00
|
|
|
* [mikeal](https://github.com/mikeal) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Mikeal Rogers** <<mikeal.rogers@gmail.com>>
|
2024-02-28 14:38:25 +01:00
|
|
|
* [miladfarca](https://github.com/miladfarca) -
|
|
|
|
**Milad Fa** <<mfarazma@redhat.com>> (he/him)
|
2021-09-15 06:12:04 +02:00
|
|
|
* [misterdjules](https://github.com/misterdjules) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Julien Gilli** <<jgilli@netflix.com>>
|
2022-04-16 19:16:00 +02:00
|
|
|
* [mmarchini](https://github.com/mmarchini) -
|
|
|
|
**Mary Marchini** <<oss@mmarchini.me>> (she/her)
|
2017-10-13 06:12:52 +02:00
|
|
|
* [monsanto](https://github.com/monsanto) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Christopher Monsanto** <<chris@monsan.to>>
|
2020-03-08 19:17:51 +01:00
|
|
|
* [MoonBall](https://github.com/MoonBall) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Chen Gang** <<gangc.cxy@foxmail.com>>
|
2024-04-14 11:02:30 +02:00
|
|
|
* [mscdex](https://github.com/mscdex) -
|
|
|
|
**Brian White** <<mscdex@mscdex.net>>
|
2024-07-15 06:28:26 +02:00
|
|
|
* [MylesBorins](https://github.com/MylesBorins) -
|
|
|
|
**Myles Borins** <<myles.borins@gmail.com>> (he/him)
|
2020-02-24 05:51:56 +01:00
|
|
|
* [not-an-aardvark](https://github.com/not-an-aardvark) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Teddy Katz** <<teddy.katz@gmail.com>> (he/him)
|
2021-07-08 15:46:16 +02:00
|
|
|
* [ofrobots](https://github.com/ofrobots) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Ali Ijaz Sheikh** <<ofrobots@google.com>> (he/him)
|
2017-10-13 06:12:52 +02:00
|
|
|
* [Olegas](https://github.com/Olegas) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Oleg Elifantiev** <<oleg@elifantiev.ru>>
|
2019-05-09 22:17:19 +02:00
|
|
|
* [orangemocha](https://github.com/orangemocha) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Alexis Campailla** <<orangemocha@nodejs.org>>
|
2019-04-27 03:30:56 +02:00
|
|
|
* [othiym23](https://github.com/othiym23) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Forrest L Norvell** <<ogd@aoaioxxysz.net>> (they/them/themself)
|
2024-01-15 14:21:09 +01:00
|
|
|
* [oyyd](https://github.com/oyyd) -
|
|
|
|
**Ouyang Yadong** <<oyydoibh@gmail.com>> (he/him)
|
2017-10-13 06:12:52 +02:00
|
|
|
* [petkaantonov](https://github.com/petkaantonov) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Petka Antonov** <<petka_antonov@hotmail.com>>
|
2018-10-21 01:37:24 +02:00
|
|
|
* [phillipj](https://github.com/phillipj) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Phillip Johnsen** <<johphi@gmail.com>>
|
2017-10-13 06:12:52 +02:00
|
|
|
* [piscisaureus](https://github.com/piscisaureus) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Bert Belder** <<bertbelder@gmail.com>>
|
2019-05-08 00:06:48 +02:00
|
|
|
* [pmq20](https://github.com/pmq20) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Minqi Pan** <<pmq2001@gmail.com>>
|
2022-10-28 06:21:05 +02:00
|
|
|
* [PoojaDurgad](https://github.com/PoojaDurgad) -
|
|
|
|
**Pooja D P** <<Pooja.D.P@ibm.com>> (she/her)
|
2020-02-11 08:03:25 +01:00
|
|
|
* [princejwesley](https://github.com/princejwesley) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Prince John Wesley** <<princejohnwesley@gmail.com>>
|
2021-03-31 02:54:48 +02:00
|
|
|
* [psmarshall](https://github.com/psmarshall) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Peter Marshall** <<petermarshall@chromium.org>> (he/him)
|
2023-05-17 06:23:04 +02:00
|
|
|
* [puzpuzpuz](https://github.com/puzpuzpuz) -
|
|
|
|
**Andrey Pechkurov** <<apechkurov@gmail.com>> (he/him)
|
2024-01-12 09:58:53 +01:00
|
|
|
* [RaisinTen](https://github.com/RaisinTen) -
|
|
|
|
**Darshan Sen** <<raisinten@gmail.com>> (he/him)
|
2021-09-15 06:12:04 +02:00
|
|
|
* [refack](https://github.com/refack) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Refael Ackermann (רפאל פלחי)** <<refack@gmail.com>> (he/him/הוא/אתה)
|
2022-07-13 15:53:08 +02:00
|
|
|
* [rexagod](https://github.com/rexagod) -
|
|
|
|
**Pranshu Srivastava** <<rexagod@gmail.com>> (he/him)
|
2024-04-14 11:02:30 +02:00
|
|
|
* [rickyes](https://github.com/rickyes) -
|
|
|
|
**Ricky Zhou** <<0x19951125@gmail.com>> (he/him)
|
2017-10-13 06:12:52 +02:00
|
|
|
* [rlidwka](https://github.com/rlidwka) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Alex Kocharin** <<alex@kocharin.ru>>
|
2018-06-11 23:52:37 +02:00
|
|
|
* [rmg](https://github.com/rmg) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Ryan Graham** <<r.m.graham@gmail.com>>
|
2018-06-11 23:52:37 +02:00
|
|
|
* [robertkowalski](https://github.com/robertkowalski) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Robert Kowalski** <<rok@kowalski.gd>>
|
2018-06-11 23:52:37 +02:00
|
|
|
* [romankl](https://github.com/romankl) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Roman Klauke** <<romaaan.git@gmail.com>>
|
2020-10-27 15:24:10 +01:00
|
|
|
* [ronkorving](https://github.com/ronkorving) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Ron Korving** <<ron@ronkorving.nl>>
|
2019-11-04 03:59:36 +01:00
|
|
|
* [RReverser](https://github.com/RReverser) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Ingvar Stepanyan** <<me@rreverser.com>>
|
2021-07-05 03:45:38 +02:00
|
|
|
* [rubys](https://github.com/rubys) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Sam Ruby** <<rubys@intertwingly.net>>
|
2024-01-03 05:15:44 +01:00
|
|
|
* [rvagg](https://github.com/rvagg) -
|
|
|
|
**Rod Vagg** <<rod@vagg.org>>
|
2024-04-14 11:02:30 +02:00
|
|
|
* [ryzokuken](https://github.com/ryzokuken) -
|
|
|
|
**Ujjwal Sharma** <<ryzokuken@disroot.org>> (he/him)
|
2021-09-15 06:12:04 +02:00
|
|
|
* [saghul](https://github.com/saghul) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Saúl Ibarra Corretgé** <<s@saghul.net>>
|
2020-06-28 06:29:58 +02:00
|
|
|
* [sam-github](https://github.com/sam-github) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Sam Roberts** <<vieuxtech@gmail.com>>
|
2020-07-10 18:02:38 +02:00
|
|
|
* [sebdeckers](https://github.com/sebdeckers) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Sebastiaan Deckers** <<sebdeckers83@gmail.com>>
|
2021-12-22 11:44:18 +01:00
|
|
|
* [seishun](https://github.com/seishun) -
|
|
|
|
**Nikolai Vavilov** <<vvnicholas@gmail.com>>
|
2020-11-12 15:17:16 +01:00
|
|
|
* [shigeki](https://github.com/shigeki) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Shigeki Ohtsu** <<ohtsu@ohtsu.org>> (he/him)
|
2024-04-14 11:02:30 +02:00
|
|
|
* [shisama](https://github.com/shisama) -
|
|
|
|
**Masashi Hirano** <<shisama07@gmail.com>> (he/him)
|
2021-12-14 17:17:05 +01:00
|
|
|
* [silverwind](https://github.com/silverwind) -
|
|
|
|
**Roman Reiss** <<me@silverwind.io>>
|
2023-02-08 10:51:33 +01:00
|
|
|
* [starkwang](https://github.com/starkwang) -
|
|
|
|
**Weijia Wang** <<starkwang@126.com>>
|
2019-04-30 23:14:01 +02:00
|
|
|
* [stefanmb](https://github.com/stefanmb) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Stefan Budeanu** <<stefan@budeanu.com>>
|
2017-10-13 06:12:52 +02:00
|
|
|
* [tellnes](https://github.com/tellnes) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Christian Tellnes** <<christian@tellnes.no>>
|
2020-07-22 02:19:17 +02:00
|
|
|
* [thefourtheye](https://github.com/thefourtheye) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Sakthipriyan Vairamani** <<thechargingvolcano@gmail.com>> (he/him)
|
2019-10-30 14:30:36 +01:00
|
|
|
* [thlorenz](https://github.com/thlorenz) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Thorsten Lorenz** <<thlorenz@gmx.de>>
|
2024-04-24 06:24:48 +02:00
|
|
|
* [TimothyGu](https://github.com/TimothyGu) -
|
|
|
|
**Tiancheng "Timothy" Gu** <<timothygu99@gmail.com>> (he/him)
|
2020-03-08 19:17:51 +01:00
|
|
|
* [trevnorris](https://github.com/trevnorris) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Trevor Norris** <<trev.norris@gmail.com>>
|
2018-05-05 06:59:16 +02:00
|
|
|
* [tunniclm](https://github.com/tunniclm) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Mike Tunnicliffe** <<m.j.tunnicliffe@gmail.com>>
|
2024-04-14 11:02:30 +02:00
|
|
|
* [vdeturckheim](https://github.com/vdeturckheim) -
|
|
|
|
**Vladimir de Turckheim** <<vlad2t@hotmail.com>> (he/him)
|
2020-02-11 08:01:28 +01:00
|
|
|
* [vkurchatkin](https://github.com/vkurchatkin) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Vladimir Kurchatkin** <<vladimir.kurchatkin@gmail.com>>
|
2019-04-25 16:46:31 +02:00
|
|
|
* [vsemozhetbyt](https://github.com/vsemozhetbyt) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Vse Mozhet Byt** <<vsemozhetbyt@gmail.com>> (he/him)
|
2021-12-13 05:09:29 +01:00
|
|
|
* [watson](https://github.com/watson) -
|
|
|
|
**Thomas Watson** <<w@tson.dk>>
|
2019-05-14 23:41:30 +02:00
|
|
|
* [whitlockjc](https://github.com/whitlockjc) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Jeremy Whitlock** <<jwhitlock@apache.org>>
|
2024-06-19 06:21:46 +02:00
|
|
|
* [XadillaX](https://github.com/XadillaX) -
|
|
|
|
**Khaidi Chu** <<i@2333.moe>> (he/him)
|
2024-05-23 10:12:15 +02:00
|
|
|
* [yashLadha](https://github.com/yashLadha) -
|
|
|
|
**Yash Ladha** <<yash@yashladha.in>> (he/him)
|
2021-10-15 06:12:10 +02:00
|
|
|
* [yhwang](https://github.com/yhwang) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Yihong Wang** <<yh.wang@ibm.com>>
|
2021-09-15 06:12:04 +02:00
|
|
|
* [yorkie](https://github.com/yorkie) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Yorkie Liu** <<yorkiefixer@gmail.com>>
|
2022-05-02 06:28:15 +02:00
|
|
|
* [yosuke-furukawa](https://github.com/yosuke-furukawa) -
|
|
|
|
**Yosuke Furukawa** <<yosuke.furukawa@gmail.com>>
|
2021-07-09 08:40:22 +02:00
|
|
|
|
|
|
|
</details>
|
2021-10-30 14:51:41 +02:00
|
|
|
|
2020-06-04 06:59:33 +02:00
|
|
|
<!--lint enable prohibited-strings-->
|
2017-10-13 06:12:52 +02:00
|
|
|
|
2022-01-05 19:26:30 +01:00
|
|
|
Collaborators follow the [Collaborator Guide](./doc/contributing/collaborator-guide.md) in
|
2017-05-29 17:53:30 +02:00
|
|
|
maintaining the Node.js project.
|
2015-08-20 06:51:00 +02:00
|
|
|
|
2020-09-11 14:05:16 +02:00
|
|
|
### Triagers
|
|
|
|
|
2023-05-28 10:28:38 +02:00
|
|
|
* [atlowChemi](https://github.com/atlowChemi) -
|
|
|
|
**Chemi Atlow** <<chemi@atlow.co.il>> (he/him)
|
2021-03-17 13:25:07 +01:00
|
|
|
* [Ayase-252](https://github.com/Ayase-252) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Qingyu Deng** <<i@ayase-lab.com>>
|
2022-10-25 01:42:39 +02:00
|
|
|
* [bmuenzenmeyer](https://github.com/bmuenzenmeyer) -
|
|
|
|
**Brian Muenzenmeyer** <<brian.muenzenmeyer@gmail.com>> (he/him)
|
2023-11-22 00:45:39 +01:00
|
|
|
* [CanadaHonk](https://github.com/CanadaHonk) -
|
|
|
|
**Oliver Medhurst** <<honk@goose.icu>> (they/them)
|
2022-07-04 12:09:13 +02:00
|
|
|
* [daeyeon](https://github.com/daeyeon) -
|
|
|
|
**Daeyeon Jeong** <<daeyeon.dev@gmail.com>> (he/him)
|
2022-06-11 16:56:42 +02:00
|
|
|
* [F3n67u](https://github.com/F3n67u) -
|
|
|
|
**Feng Yu** <<F3n67u@outlook.com>> (he/him)
|
2024-08-02 12:27:47 +02:00
|
|
|
* [gireeshpunathil](https://github.com/gireeshpunathil) -
|
|
|
|
**Gireesh Punathil** <<gpunathi@in.ibm.com>> (he/him)
|
2021-08-28 03:54:00 +02:00
|
|
|
* [iam-frankqiu](https://github.com/iam-frankqiu) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Frank Qiu** <<iam.frankqiu@gmail.com>> (he/him)
|
2024-08-06 13:53:15 +02:00
|
|
|
* [KevinEady](https://github.com/KevinEady) -
|
|
|
|
**Kevin Eady** <<kevin.c.eady@gmail.com>> (he/him)
|
2024-08-02 12:27:47 +02:00
|
|
|
* [kvakil](https://github.com/kvakil) -
|
|
|
|
**Keyhan Vakil** <<kvakil@sylph.kvakil.me>>
|
2021-03-09 13:10:42 +01:00
|
|
|
* [marsonya](https://github.com/marsonya) -
|
2021-10-29 03:27:26 +02:00
|
|
|
**Akhil Marsonya** <<akhil.marsonya27@gmail.com>> (he/him)
|
2022-02-23 03:54:06 +01:00
|
|
|
* [meixg](https://github.com/meixg) -
|
2022-04-02 14:16:17 +02:00
|
|
|
**Xuguang Mei** <<meixuguang@gmail.com>> (he/him)
|
2023-09-23 11:13:31 +02:00
|
|
|
* [mertcanaltin](https://github.com/mertcanaltin) -
|
|
|
|
**Mert Can Altin** <<mertgold60@gmail.com>>
|
2024-04-13 17:03:43 +02:00
|
|
|
* [preveen-stack](https://github.com/preveen-stack) -
|
|
|
|
**Preveen Padmanabhan** <<wide4head@gmail.com>> (he/him)
|
2024-11-02 15:14:40 +01:00
|
|
|
* [RedYetiDev](https://github.com/RedYetiDev) -
|
2024-04-20 14:46:34 +02:00
|
|
|
**Aviv Keller** <<redyetidev@gmail.com>> (they/them)
|
2022-11-18 03:21:35 +01:00
|
|
|
* [VoltrexKeyva](https://github.com/VoltrexKeyva) -
|
2021-11-18 06:08:06 +01:00
|
|
|
**Mohammed Keyvanzadeh** <<mohammadkeyvanzade94@gmail.com>> (he/him)
|
2020-09-11 14:05:16 +02:00
|
|
|
|
2022-10-26 21:31:53 +02:00
|
|
|
Triagers follow the [Triage Guide](./doc/contributing/issues.md#triaging-a-bug-report) when
|
|
|
|
responding to new issues.
|
|
|
|
|
2021-02-06 17:17:21 +01:00
|
|
|
### Release keys
|
2015-08-20 06:51:00 +02:00
|
|
|
|
2020-04-01 06:41:08 +02:00
|
|
|
Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):
|
2015-08-20 06:51:00 +02:00
|
|
|
|
2024-10-10 14:12:53 +02:00
|
|
|
* **Antoine du Hamel** <<duhamelantoine1995@gmail.com>>
|
|
|
|
`C0D6248439F1D5604AAFFB4021D900FFDB233756`
|
2023-03-05 04:22:32 +01:00
|
|
|
* **Juan José Arboleda** <<soyjuanarbol@gmail.com>>
|
|
|
|
`DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7`
|
2024-03-28 19:16:33 +01:00
|
|
|
* **Marco Ippolito** <<marcoippolito54@gmail.com>>
|
|
|
|
`CC68F5A3106FF448322E48ED27F5E38D5B0A215F`
|
2021-10-29 03:27:26 +02:00
|
|
|
* **Michaël Zasso** <<targos@protonmail.com>>
|
2021-09-18 00:44:08 +02:00
|
|
|
`8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600`
|
2024-05-09 18:46:50 +02:00
|
|
|
* **Rafael Gonzaga** <<rafael.nunu@hotmail.com>>
|
2022-05-20 14:33:59 +02:00
|
|
|
`890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4`
|
2021-10-29 03:27:26 +02:00
|
|
|
* **Richard Lau** <<rlau@redhat.com>>
|
2021-09-18 00:44:08 +02:00
|
|
|
`C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C`
|
2021-10-29 03:27:26 +02:00
|
|
|
* **Ruy Adorno** <<ruyadorno@hotmail.com>>
|
2021-09-18 00:44:08 +02:00
|
|
|
`108F52B48DB57BB0CC439B2997B01419BD92F80A`
|
2023-09-07 14:44:14 +02:00
|
|
|
* **Ulises Gascón** <<ulisesgascongonzalez@gmail.com>>
|
|
|
|
`A363A499291CBBC940DD62E41F10027AF002F8B0`
|
2015-08-20 06:51:00 +02:00
|
|
|
|
2020-04-04 11:31:39 +02:00
|
|
|
To import the full set of trusted release keys (including subkeys possibly used
|
|
|
|
to sign releases):
|
2015-08-20 06:51:00 +02:00
|
|
|
|
2020-05-20 17:10:22 +02:00
|
|
|
```bash
|
2024-10-10 14:12:53 +02:00
|
|
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys C0D6248439F1D5604AAFFB4021D900FFDB233756 # Antoine du Hamel
|
2024-05-09 18:46:50 +02:00
|
|
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 # Juan José Arboleda
|
|
|
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys CC68F5A3106FF448322E48ED27F5E38D5B0A215F # Marco Ippolito
|
|
|
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 # Michaël Zasso
|
|
|
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 # Rafael Gonzaga
|
|
|
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C # Richard Lau
|
|
|
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys 108F52B48DB57BB0CC439B2997B01419BD92F80A # Ruy Adorno
|
|
|
|
gpg --keyserver hkps://keys.openpgp.org --recv-keys A363A499291CBBC940DD62E41F10027AF002F8B0 # Ulises Gascón
|
2015-08-20 06:51:00 +02:00
|
|
|
```
|
|
|
|
|
2022-03-24 06:24:45 +01:00
|
|
|
See [Verifying binaries](#verifying-binaries) for how to use these keys to
|
|
|
|
verify a downloaded file.
|
2015-08-20 06:51:00 +02:00
|
|
|
|
2021-07-09 08:40:22 +02:00
|
|
|
<details>
|
|
|
|
|
|
|
|
<summary>Other keys used to sign some previous releases</summary>
|
2015-08-20 06:51:00 +02:00
|
|
|
|
2024-10-15 23:20:40 +02:00
|
|
|
* **Beth Griggs** <<bethanyngriggs@gmail.com>>
|
|
|
|
`4ED778F539E3634C779C87C6D7062848A1AB005C`
|
2024-10-15 23:21:56 +02:00
|
|
|
* **Bryan English** <<bryan@bryanenglish.com>>
|
|
|
|
`141F07595B7B3FFE74309A937405533BE57C7D57`
|
2021-10-29 03:27:26 +02:00
|
|
|
* **Chris Dickinson** <<christopher.s.dickinson@gmail.com>>
|
2021-09-18 00:44:08 +02:00
|
|
|
`9554F04D7259F04124DE6B476D5A82AC7E37093B`
|
2022-10-07 15:25:54 +02:00
|
|
|
* **Colin Ihrig** <<cjihrig@gmail.com>>
|
|
|
|
`94AE36675C464D64BAFA68DD7434390BDBE9B9C5`
|
2021-10-29 03:27:26 +02:00
|
|
|
* **Danielle Adams** <<adamzdanielle@gmail.com>>
|
2021-09-18 00:44:08 +02:00
|
|
|
`1C050899334244A8AF75E53792EF661D867B9DFA`
|
2024-10-15 23:22:20 +02:00
|
|
|
`74F12602B6F1C4E913FAA37AD3A89613643B6201`
|
2021-10-29 03:27:26 +02:00
|
|
|
* **Evan Lucas** <<evanlucas@me.com>>
|
2021-09-18 00:44:08 +02:00
|
|
|
`B9AE9905FFD7803F25714661B63B535A4C206CA9`
|
2021-10-29 03:27:26 +02:00
|
|
|
* **Gibson Fahnestock** <<gibfahn@gmail.com>>
|
2021-09-18 00:44:08 +02:00
|
|
|
`77984A986EBC2AA786BC0F66B01FBB92821C587A`
|
2021-10-29 03:27:26 +02:00
|
|
|
* **Isaac Z. Schlueter** <<i@izs.me>>
|
2021-09-18 00:44:08 +02:00
|
|
|
`93C7E9E91B49E432C2F75674B0A78B0A6C481CF6`
|
2021-10-29 03:27:26 +02:00
|
|
|
* **Italo A. Casas** <<me@italoacasas.com>>
|
2021-09-18 00:44:08 +02:00
|
|
|
`56730D5401028683275BD23C23EFEFE93C4CFFFE`
|
2022-10-07 15:25:54 +02:00
|
|
|
* **James M Snell** <<jasnell@keybase.io>>
|
|
|
|
`71DCFD284A79C3B38668286BC97EC7A07EDE3FC1`
|
2021-10-29 03:27:26 +02:00
|
|
|
* **Jeremiah Senkpiel** <<fishrock@keybase.io>>
|
2021-09-18 00:44:08 +02:00
|
|
|
`FD3A5288F042B6850C66B31F09FE44734EB7990E`
|
2022-12-14 19:25:22 +01:00
|
|
|
* **Juan José Arboleda** <<soyjuanarbol@gmail.com>>
|
|
|
|
`61FC681DFB92A079F1685E77973F295594EC4689`
|
2021-10-29 03:27:26 +02:00
|
|
|
* **Julien Gilli** <<jgilli@fastmail.fm>>
|
2021-09-18 00:44:08 +02:00
|
|
|
`114F43EE0176B71C7BC219DD50A3051F888C628D`
|
2024-08-05 17:07:42 +02:00
|
|
|
* **Myles Borins** <<myles.borins@gmail.com>>
|
|
|
|
`C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8`
|
2022-10-07 15:25:54 +02:00
|
|
|
* **Rod Vagg** <<rod@vagg.org>>
|
|
|
|
`DD8F2338BAE7501E3DD5AC78C273792F7D83545D`
|
|
|
|
* **Ruben Bridgewater** <<ruben@bridgewater.de>>
|
|
|
|
`A48C2BEE680E841632CD4E44F07496B3EB3C1762`
|
|
|
|
* **Shelley Vohr** <<shelley.vohr@gmail.com>>
|
|
|
|
`B9E2F5981AA6E0CD28160D9FF13993A75599653C`
|
2021-10-29 03:27:26 +02:00
|
|
|
* **Timothy J Fontaine** <<tjfontaine@gmail.com>>
|
2021-09-18 00:44:08 +02:00
|
|
|
`7937DFD2AB06298B2293C3187D33FF9D0246406D`
|
2016-07-20 17:24:57 +02:00
|
|
|
|
2021-07-09 08:40:22 +02:00
|
|
|
</details>
|
|
|
|
|
2022-01-26 18:11:15 +01:00
|
|
|
### Security release stewards
|
|
|
|
|
|
|
|
When possible, the commitment to take slots in the
|
|
|
|
security release steward rotation is made by companies in order
|
|
|
|
to ensure individuals who act as security stewards have the
|
|
|
|
support and recognition from their employer to be able to
|
|
|
|
prioritize security releases. Security release stewards manage security
|
|
|
|
releases on a rotation basis as outlined in the
|
|
|
|
[security release process](./doc/contributing/security-release-process.md).
|
|
|
|
|
2024-08-06 09:51:07 +02:00
|
|
|
* [Datadog](https://www.datadoghq.com/)
|
2022-01-26 18:11:15 +01:00
|
|
|
* [bengl](https://github.com/bengl) -
|
|
|
|
**Bryan English** <<bryan@bryanenglish.com>> (he/him)
|
2024-08-06 09:51:07 +02:00
|
|
|
* [NodeSource](https://nodesource.com/)
|
2022-10-14 20:13:46 +02:00
|
|
|
* [juanarbol](https://github.com/juanarbol) -
|
|
|
|
**Juan José Arboleda** <<soyjuanarbol@gmail.com>> (he/him)
|
2024-03-14 18:34:10 +01:00
|
|
|
* [RafaelGSS](https://github.com/RafaelGSS) -
|
|
|
|
**Rafael Gonzaga** <<rafael.nunu@hotmail.com>> (he/him)
|
2024-08-06 09:51:07 +02:00
|
|
|
* [Platformatic](https://platformatic.dev/)
|
2022-01-26 18:11:15 +01:00
|
|
|
* [mcollina](https://github.com/mcollina) -
|
|
|
|
**Matteo Collina** <<matteo.collina@gmail.com>> (he/him)
|
2024-08-06 09:51:07 +02:00
|
|
|
* [Red Hat](https://redhat.com) / [IBM](https://ibm.com)
|
2022-02-06 16:19:34 +01:00
|
|
|
* [joesepi](https://github.com/joesepi) -
|
2022-01-26 18:11:15 +01:00
|
|
|
**Joe Sepi** <<joesepi@ibm.com>> (he/him)
|
|
|
|
* [mhdawson](https://github.com/mhdawson) -
|
|
|
|
**Michael Dawson** <<midawson@redhat.com>> (he/him)
|
|
|
|
|
2020-11-26 11:28:15 +01:00
|
|
|
## License
|
|
|
|
|
|
|
|
Node.js is available under the
|
2024-10-30 14:33:04 +01:00
|
|
|
[MIT License](https://opensource.org/licenses/MIT). Node.js also includes
|
2020-11-26 11:28:15 +01:00
|
|
|
external libraries that are available under a variety of licenses. See
|
2021-05-03 11:15:35 +02:00
|
|
|
[LICENSE](https://github.com/nodejs/node/blob/HEAD/LICENSE) for the full
|
2020-11-26 11:28:15 +01:00
|
|
|
license text.
|
|
|
|
|
2021-05-03 11:15:35 +02:00
|
|
|
[Code of Conduct]: https://github.com/nodejs/admin/blob/HEAD/CODE_OF_CONDUCT.md
|
2016-07-20 17:24:57 +02:00
|
|
|
[Contributing to the project]: CONTRIBUTING.md
|
2022-02-06 17:34:32 +01:00
|
|
|
[Node.js website]: https://nodejs.org/
|
2020-05-28 16:03:53 +02:00
|
|
|
[OpenJS Foundation]: https://openjsf.org/
|
2022-01-05 19:26:30 +01:00
|
|
|
[Strategic initiatives]: doc/contributing/strategic-initiatives.md
|
|
|
|
[Technical values and prioritization]: doc/contributing/technical-values.md
|
2021-05-03 11:15:35 +02:00
|
|
|
[Working Groups]: https://github.com/nodejs/TSC/blob/HEAD/WORKING_GROUPS.md
|