Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add fallback to npm registry API in fetchPeerDependencies #155

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

xbinaryx
Copy link

@xbinaryx xbinaryx commented Mar 9, 2025

This PR enhances the fetchPeerDependencies function by adding a fallback mechanism. If npm is unavailable, the function will now query the npm registry API directly to fetch peer dependencies.

Closes #84

@xbinaryx
Copy link
Author

I am not exactly sure who to ask for a review here, maybe @mdjermanovic?

@aladdin-add aladdin-add self-requested a review March 29, 2025 18:05
Copy link
Member

@aladdin-add aladdin-add left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💯 LGTM. Would like another review before merging.

@@ -79,8 +96,31 @@ function fetchPeerDependencies(packageName) {

if (error && error.code === "ENOENT") {

// TODO: should throw an error instead of returning null
return null;
// Fallback to using the npm registry API directly when npm is not available.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should first check if npm is available via npm --version command and if it's available use npm show --json otherwise use fetch API. As per the current implementation, it will only use fetch if the error code is ENOENT.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since npm --version throws ENOENT when npm is missing, I don't see the need for an additional check. Could you clarify more?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Second Review Needed
Development

Successfully merging this pull request may close these issues.

package manager (npm, yarn, etc.) is not asked in style (How would you like to use ESLint) option
3 participants