From 9646e1ac4c251d7726f91916aec062f48065027e Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sat, 22 Jan 2022 11:26:31 +0100 Subject: [PATCH] doc: fix documentation for `MODULE_NOT_FOUND` and `ERR_MODULE_NOT_FOUND` --- doc/api/errors.md | 9 ++++----- doc/api/modules.md | 6 +++--- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/doc/api/errors.md b/doc/api/errors.md index a22f125ce62c98..f7950575472fb6 100644 --- a/doc/api/errors.md +++ b/doc/api/errors.md @@ -2225,9 +2225,8 @@ transferable object types has been expanded to cover more types than ### `ERR_MODULE_NOT_FOUND` -> Stability: 1 - Experimental - -An [ES Module][] could not be resolved. +A module file could not be resolved by the ECMAScript modules loader while +attempting an `import` operation or when loading the program entry point. @@ -2958,8 +2957,8 @@ changes: description: Added `requireStack` property. --> -A module file could not be resolved while attempting a [`require()`][] or -`import` operation. +A module file could not be resolved by the CommonJS modules loader while +attempting a [`require()`][] operation or when loading the program entry point. ## Legacy Node.js error codes diff --git a/doc/api/modules.md b/doc/api/modules.md index 0adca6de8dc50f..7c814351a62fa2 100644 --- a/doc/api/modules.md +++ b/doc/api/modules.md @@ -429,8 +429,8 @@ A required module prefixed with `'./'` is relative to the file calling Without a leading `'/'`, `'./'`, or `'../'` to indicate a file, the module must either be a core module or is loaded from a `node_modules` folder. -If the given path does not exist, `require()` will throw an [`Error`][] with its -`code` property set to `'MODULE_NOT_FOUND'`. +If the given path does not exist, `require()` will throw a +[`MODULE_NOT_FOUND`][] error. ## Folders as modules @@ -1084,7 +1084,7 @@ This section was moved to [`"type"`]: packages.md#type [`ERR_REQUIRE_ESM`]: errors.md#err_require_esm [`ERR_UNSUPPORTED_DIR_IMPORT`]: errors.md#err_unsupported_dir_import -[`Error`]: errors.md#class-error +[`MODULE_NOT_FOUND`]: errors.md#module_not_found [`__dirname`]: #__dirname [`__filename`]: #__filename [`import()`]: https://wiki.developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#Dynamic_Imports