doc: align module resolve algorithm with implementation#38837
Merged
aduh95 merged 3 commits intonodejs:masterfrom Dec 14, 2021
Merged
doc: align module resolve algorithm with implementation#38837aduh95 merged 3 commits intonodejs:masterfrom
aduh95 merged 3 commits intonodejs:masterfrom
Conversation
bl-ue
reviewed
May 29, 2021
Contributor
|
@nodejs/modules |
guybedford
reviewed
May 29, 2021
Co-authored-by: Jordan Harband <[email protected]> Co-authored-by: Christopher Beeson <[email protected]>
ljharb
reviewed
May 31, 2021
Co-authored-by: Jordan Harband <[email protected]>
Member
Author
|
It seems that GH action |
|
When will this PR be merged 😂 |
guybedford
approved these changes
Dec 14, 2021
Contributor
|
Landed in ea977fc |
danielleadams
pushed a commit
that referenced
this pull request
Dec 16, 2021
Fixes: #38128 PR-URL: #38837 Reviewed-By: Guy Bedford <[email protected]>
danielleadams
pushed a commit
that referenced
this pull request
Dec 17, 2021
Fixes: #38128 PR-URL: #38837 Reviewed-By: Guy Bedford <[email protected]>
danielleadams
pushed a commit
that referenced
this pull request
Jan 31, 2022
Fixes: #38128 PR-URL: #38837 Reviewed-By: Guy Bedford <[email protected]>
danielleadams
pushed a commit
that referenced
this pull request
Jan 31, 2022
Fixes: #38128 PR-URL: #38837 Reviewed-By: Guy Bedford <[email protected]>
Linkgoron
pushed a commit
to Linkgoron/node
that referenced
this pull request
Jan 31, 2022
Fixes: nodejs#38128 PR-URL: nodejs#38837 Reviewed-By: Guy Bedford <[email protected]>
danielleadams
pushed a commit
that referenced
this pull request
Feb 1, 2022
Fixes: #38128 PR-URL: #38837 Reviewed-By: Guy Bedford <[email protected]>
Merged
chirsz-ever
added a commit
to chirsz-ever/node
that referenced
this pull request
Mar 29, 2025
This problem was introduced in PR nodejs#38837.
nodejs-github-bot
pushed a commit
that referenced
this pull request
Nov 8, 2025
This problem was introduced in PR #38837. PR-URL: #57677 Reviewed-By: James M Snell <[email protected]>
aduh95
pushed a commit
that referenced
this pull request
Nov 10, 2025
This problem was introduced in PR #38837. PR-URL: #57677 Reviewed-By: James M Snell <[email protected]>
aduh95
pushed a commit
that referenced
this pull request
Nov 11, 2025
This problem was introduced in PR #38837. PR-URL: #57677 Reviewed-By: James M Snell <[email protected]>
aduh95
pushed a commit
that referenced
this pull request
Nov 13, 2025
This problem was introduced in PR #38837. PR-URL: #57677 Reviewed-By: James M Snell <[email protected]>
aduh95
pushed a commit
that referenced
this pull request
Feb 17, 2026
This problem was introduced in PR #38837. PR-URL: #57677 Reviewed-By: James M Snell <[email protected]>
aduh95
pushed a commit
that referenced
this pull request
Feb 19, 2026
This problem was introduced in PR #38837. PR-URL: #57677 Reviewed-By: James M Snell <[email protected]>
aduh95
pushed a commit
that referenced
this pull request
Feb 23, 2026
This problem was introduced in PR #38837. PR-URL: #57677 Reviewed-By: James M Snell <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In docs, it reads like
GLOBAL_FOLDERStakes precedence overnode_module, but in implementation,GLOBAL_FOLDERSis appended to the last of paths to resolve. It should take lowest priority.node/lib/internal/modules/cjs/loader.js
Line 678 in f1cbaea
Fixes: #38128