doc: fix documentation for MODULE_NOT_FOUND and ERR_MODULE_NOT_FOUND

PR-URL: https://github.com/nodejs/node/pull/41645
Reviewed-By: Guy Bedford <guybedford@gmail.com>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Antoine du Hamel 2022-01-24 22:59:26 +01:00 committed by GitHub
parent 726711fe4e
commit 5d88f59fdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 8 deletions

View File

@ -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.
<a id="ERR_MULTIPLE_CALLBACK"></a>
@ -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

View File

@ -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