summaryrefslogtreecommitdiff
path: root/doc/api
Commit message (Collapse)AuthorAgeFilesLines
* doc: add documentation for inherited methodsLuigi Pinca2022-04-181-0/+82
| | | | | | | | | | These methods are inherited from `http.OutgoingMessage` and they are already documented as methods of the `http.ServerResponse` class. For consistency, document them also as methods of the `http.ClientRequest` class. PR-URL: https://github.com/nodejs/node/pull/42691 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Mestery <mestery@protonmail.com>
* doc: close tag in n-api.mdLivia Medeiros2022-04-181-0/+1
| | | | | | | | | PR-URL: https://github.com/nodejs/node/pull/42751 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com>
* doc: copyedit http.OutgoingMessage documentationLuigi Pinca2022-04-171-68/+44
| | | | | | | Fix nits/typos and simplify some sentences. PR-URL: https://github.com/nodejs/node/pull/42733 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
* doc: fix `added:` info for `outgoingMessage.writable*`Luigi Pinca2022-04-171-6/+8
| | | | | | | | | | | | | | | | | | | - `outgoingMessage.writableCorked` was added to Node.js v13.2.0 via 62e15a793a56 and backported to Node.js v12.16.0 via db8144be3187. - `outgoingMessage.writableEnded` was added to Node.js v12.9.0 via f9b61d2bc7d7. - `outgoingMessage.writableFinished` was added to Node.js v12.7.0 via 06d0abea0d7e. - `outgoingMessage.writableHighWaterMark`, `outgoingMessage.writableLength`, and `outgoingMessage.writableObjectMode` were added to Node.js v12.9.0 via 16e001112c31. PR-URL: https://github.com/nodejs/node/pull/42737 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Ricky Zhou <0x19951125@gmail.com>
* test_runner: add initial CLI runnerColin Ihrig2022-04-152-0/+74
| | | | | | | This commit introduces an initial version of a CLI-based test runner. PR-URL: https://github.com/nodejs/node/pull/42658 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
* doc: document the 'close' and 'finish' eventsLuigi Pinca2022-04-141-0/+20
| | | | | | | | | | | These events are already documented as events of the `http.ServerResponse` class. Document that they can also be emitted on instances of the `http.ClientRequest` class. PR-URL: https://github.com/nodejs/node/pull/42704 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com>
* doc: fix `added:` info for `outgoingMessage.{,un}cork()`Luigi Pinca2022-04-141-2/+6
| | | | | | | | | | | | `outgoingMessage.cork()` and `outgoingMessage.uncork()` were added to Node.js v13.2.0 via 62e15a793a56 and backported to Node.js v12.16.0 via db8144be3187. PR-URL: https://github.com/nodejs/node/pull/42711 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
* doc: revise data imports and node: imports sectionsRich Trott2022-04-141-11/+10
| | | | | | | Revise for conformance with style guide and clarity. PR-URL: https://github.com/nodejs/node/pull/42734 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
* doc: fix ESM JSON/data URL import exampleRich Trott2022-04-141-1/+1
| | | | | PR-URL: https://github.com/nodejs/node/pull/42728 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com>
* doc: improve doc for http.ServerResponse inheritanceLuigi Pinca2022-04-141-1/+1
| | | | | | | | | | | | | Document that `http.ServerResponse` inherits from `http.OutgoingMessage`. PR-URL: https://github.com/nodejs/node/pull/42693 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com> Reviewed-By: Ricky Zhou <0x19951125@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
* doc: add NodeEdKeyGenParams to CryptoKey.algorithmTobias Nießen2022-04-131-1/+1
| | | | | PR-URL: https://github.com/nodejs/node/pull/42629 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
* doc: fix the example for embeddersMomtchil Momtchev2022-04-131-0/+1
| | | | | | | | | | | Refs: #42670 PR-URL: https://github.com/nodejs/node/pull/42671 Fixes: https://github.com/nodejs/node/issues/42670 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
* http: refactor headersTimeout and requestTimeout logicPaolo Insogna2022-04-131-10/+35
| | | | | | | | PR-URL: https://github.com/nodejs/node/pull/41263 Fixes: https://github.com/nodejs/node/issues/33440 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
* dns: remove `dns.lookup` and `dnsPromises.lookup` options type coercionAntoine du Hamel2022-04-121-2/+6
| | | | | | PR-URL: https://github.com/nodejs/node/pull/41431 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
* doc: change AES-GCM IV recommendation in WebCryptoTobias Nießen2022-04-121-3/+9
| | | | PR-URL: https://github.com/nodejs/node/pull/42611 Reviewed-By: Filip Skokan <panva.ip@gmail.com>
* doc: fix `added:` info for some methodsLuigi Pinca2022-04-111-3/+3
| | | | | | | | | | | | | | `outgoingMessage.getHeader()`, `outgoingMessage.getHeaderNames()`, and `outgoingMessage.getHeaders()` were added to Node.js v7.7.0 via 3e8d43d165ef. PR-URL: https://github.com/nodejs/node/pull/42661 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Qingyu Deng <i@ayase-lab.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
* doc: remove unneeded new in Buffer exampleNiklas Mischkulnig2022-04-101-2/+2
| | | | | | | | | | | PR-URL: https://github.com/nodejs/node/pull/42682 Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
* doc: mark worker.id as integer in cluster docsTobias Nießen2022-04-101-1/+1
| | | | | | PR-URL: https://github.com/nodejs/node/pull/42684 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
* doc: recommend `fh.createWriteStream` for fsPromises methodsAntoine du Hamel2022-04-101-3/+4
| | | | | | | | | `fh.createWriteStream` can be more convenient than `fs.createWriteStream` when using the FS promises API. PR-URL: https://github.com/nodejs/node/pull/42653 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com>
* doc: fix outgoingMessage.removeHeader() signatureLuigi Pinca2022-04-101-2/+4
| | | | | | | | | | | | Specify that `outgoingMessage.removeHeader()` takes a `name` argument whose type is string. PR-URL: https://github.com/nodejs/node/pull/42652 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
* doc: mark tlsSocket.authorized as boolean propertyTobias Nießen2022-04-101-3/+3
| | | | | | | This is not a function and should not have a return type. PR-URL: https://github.com/nodejs/node/pull/42647 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
* doc: add missing punctuation in Web Streams docTobias Nießen2022-04-091-1/+1
| | | | | PR-URL: https://github.com/nodejs/node/pull/42672 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
* doc: add missing article in session ticket sectionTobias Nießen2022-04-091-1/+1
| | | | | PR-URL: https://github.com/nodejs/node/pull/42632 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
* doc: link to dynamic import functionTobias Nießen2022-04-094-4/+8
| | | | | | PR-URL: https://github.com/nodejs/node/pull/42634 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
* doc: add note about header values encodingShogun2022-04-081-0/+12
| | | | | | | | PR-URL: https://github.com/nodejs/node/pull/42624 Fixes: https://github.com/nodejs/node/issues/42579 Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
* doc: add missing word in rootCertificates sectionTobias Nießen2022-04-081-1/+1
| | | | | PR-URL: https://github.com/nodejs/node/pull/42633 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
* stream: remove thenable supportRobert Nagy2022-04-081-1/+4
| | | | | | | | | | | | | Remove support for returning thenables in stream implementation methods. This is causing more confusion and issues than it's worth. Refs: https://github.com/nodejs/node/issues/39535 PR-URL: https://github.com/nodejs/node/pull/40773 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
* readline: fix question still called after closedXuguang Mei2022-04-082-0/+14
| | | | | | | | resolve: https://github.com/nodejs/node/issues/42450 PR-URL: https://github.com/nodejs/node/pull/42464 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
* fs: runtime deprecate string coercion in `fs.write`, `fs.writeFileSync`Livia Medeiros2022-04-081-1/+4
| | | | | | | | | This also affects `fs.writeFile`, `fs.appendFile`, and `fs.appendFileSync` PR-URL: https://github.com/nodejs/node/pull/42607 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
* doc: add history entries for DEP0162 on `fs.md`Antoine du Hamel2022-04-081-6/+12
| | | | | | | | | PR-URL: https://github.com/nodejs/node/pull/42608 Refs: https://github.com/nodejs/node/pull/42149 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
* doc: fix brackets positionLivia Medeiros2022-04-081-1/+1
| | | | | | | PR-URL: https://github.com/nodejs/node/pull/42649 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
* doc: copyedit corepack.mdRich Trott2022-04-071-14/+14
| | | | | | | | | PR-URL: https://github.com/nodejs/node/pull/42620 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
* 2022-04-07, Version 17.9.0 (Current)Juan José Arboleda2022-04-071-4/+4
| | | | | | | | | | Notable Changes: * (SEMVER-MINOR) crypto: make authTagLength optional for CC20P1305 (Tobias Nießen) https://github.com/nodejs/node/pull/42427 * deps: update undici to 4.16.0 (Node.js GitHub Bot) https://github.com/nodejs/node/pull/42414 * doc: add @meixg to collaborators (Xuguang Mei) https://github.com/nodejs/node/pull/42576 PR-URL: https://github.com/nodejs/node/pull/42613
* http: document that ClientRequest inherits from OutgoingMessageK.C.Ashish Kumar2022-04-071-5/+5
| | | | | | | | | | | | | | | | | http: fix extends for ClientRequest from Stream to http.OutgoingMessage http: added page entry for http.OutgoingMessage http: updated order of links http: included entry for http.OutgoingMessage http: removed unnecessary entry from md file PR-URL: https://github.com/nodejs/node/pull/42642 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
* doc: simplify Http2Stream encoding textRich Trott2022-04-061-4/+3
| | | | | | | | | PR-URL: https://github.com/nodejs/node/pull/42597 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Harshitha K P <harshitha014@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
* v8: make v8.writeHeapSnapshot() error codes consistentDarshan Sen2022-04-051-0/+3
| | | | | | | | | | | | | This change makes the error codes returned by v8.writeHeapSnapshot() consistent across all platforms by using the libuv APIs instead of fopen(), fwrite() and fclose(). This also starts reporting potential errors that might happen during the write operations. Signed-off-by: Darshan Sen <raisinten@gmail.com> PR-URL: https://github.com/nodejs/node/pull/42577 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
* doc: remove obsolete stream API selection textRich Trott2022-04-051-5/+0
| | | | | | | | PR-URL: https://github.com/nodejs/node/pull/42586 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
* test_runner: support 'only' testsColin Ihrig2022-04-042-0/+66
| | | | | | | | | This commit introduces a CLI flag and test runner functionality to support running a subset of tests that are indicated by an 'only' option passed to the test. PR-URL: https://github.com/nodejs/node/pull/42514 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
* fs: fix write methods param validation and docsLivia Medeiros2022-04-041-64/+17
| | | | | | | | | | | | | | | | The FS docs wrongfully indicated support for passing object with an own `toString` function property to `FileHandle.prototype.appendFile`, `FileHandle.prototype.writeFile`, `FileHandle.prototype.write`, `fsPromises.writeFile`, and `fs.writeSync`. This commit fixes that, and adds some test to ensure the actual behavior is aligned with the docs. It also fixes a bug that makes the process crash if a non-buffer object was passed to `FileHandle.prototype.write`. Refs: https://github.com/nodejs/node/pull/34993 PR-URL: https://github.com/nodejs/node/pull/41677 Refs: https://github.com/nodejs/node/issues/41666 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
* stream: expose web streams globals, remove runtime experimental warningAntoine du Hamel2022-04-042-17/+256
| | | | | | | | | PR-URL: https://github.com/nodejs/node/pull/42225 Fixes: https://github.com/nodejs/node/issues/40950 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
* process: disallow some uses of Object.defineProperty() on process.envHimself652022-04-041-0/+7
| | | | | | | | | | | | Disallow the use of Object.defineProperty() to hide entries in process.env or make them immutable. PR-URL: https://github.com/nodejs/node/pull/28006 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
* doc: remove faulty justification for 128-bit AESTobias Nießen2022-04-031-4/+0
| | | | | | | | | | | | | | | | | | | | This sentence implies that AES-128 is preferred over AES-256 because of a related-key attack from 2009. However, that attack by Alex Biryukov, Orr Dunkelman, Nathan Keller, Dmitry Khovratovich, and Adi Shamir, while impressive, is only effective against variants of AES-256 with a reduced number of rounds and it requires related keys. This means that the attack is not effective against AES-256 as it is used within TLS. (AES-128 is still often preferred over AES-256 simply because it is believed to be sufficiently secure and because it is faster.) PR-URL: https://github.com/nodejs/node/pull/42578 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
* doc: fix documentation of `FileHandle.prototype.appendFile`Antoine du Hamel2022-04-031-1/+16
| | | | | | | PR-URL: https://github.com/nodejs/node/pull/42588 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com>
* doc: change "OCSP Request" to "OCSP request"Tobias Nießen2022-04-031-1/+1
| | | | | | PR-URL: https://github.com/nodejs/node/pull/42582 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com>
* doc: aes webcrypto unwrap is not a node-specific extensionsFilip Skokan2022-04-031-4/+4
| | | | | PR-URL: https://github.com/nodejs/node/pull/42561 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Rich Trott <rtrott@gmail.com>
* doc: simplify recommendations in process.mdRich Trott2022-04-021-4/+2
| | | | | | | | | | | Remove recommendation that has no explanation. Make the other recommendation less wordy. PR-URL: https://github.com/nodejs/node/pull/42556 Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
* doc: clarify recommendations in stream.mdRich Trott2022-04-021-7/+6
| | | | | | | | PR-URL: https://github.com/nodejs/node/pull/42555 Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
* doc: simplify recommendation in webcrypto.mdRich Trott2022-04-021-1/+1
| | | | | | | | PR-URL: https://github.com/nodejs/node/pull/42554 Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
* doc: update DEP0102 textRich Trott2022-04-021-3/+3
| | | | | | | | | PR-URL: https://github.com/nodejs/node/pull/42553 Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
* doc: remove util.promisify() content in readline.mdRich Trott2022-04-031-38/+0
| | | | | | PR-URL: https://github.com/nodejs/node/pull/42552 Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>