diff --git a/doc/api/dns.md b/doc/api/dns.md index 638321f222a940..ac69a3491ae64e 100644 --- a/doc/api/dns.md +++ b/doc/api/dns.md @@ -664,6 +664,18 @@ subsequent servers provided. Fallback DNS servers will only be used if the earlier ones time out or result in some other error. ## DNS promises API + The `dns.promises` API provides an alternative set of asynchronous DNS methods that return `Promise` objects rather than using callbacks. The API is accessible diff --git a/doc/api/fs.md b/doc/api/fs.md index aab3adaaa32afb..2c2fe3c862670a 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -4594,6 +4594,21 @@ For detailed information, see the documentation of the asynchronous version of this API: [`fs.writev()`][]. ## `fs` Promises API + The `fs.promises` API provides an alternative set of asynchronous file system methods that return `Promise` objects rather than using callbacks. The diff --git a/doc/api/stream.md b/doc/api/stream.md index fd70a662ac251a..c545b28236d861 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -49,6 +49,9 @@ Additionally, this module includes the utility functions [`stream.Readable.from()`][]. ### Streams Promises API + The `stream/promises` API provides an alternative set of asynchronous utility functions for streams that return `Promise` objects rather than using