resolve icon indicating copy to clipboard operation
resolve copied to clipboard

Implements the node.js require.resolve() algorithm

Results 16 resolve issues
Sort by recently updated
recently updated
newest added

Hello, I deleted the node_modules folder in my meteor app and made `meteor npm install`. After that the app can't be started and ends up with the following error: ```...

I was diagnosing performance of an app scanning node_modules. It turned out half of the time is spent in isDirectory on the few cases where it was looking for a...

Hello! I added more detailed error in case of MODULE_NOT_FOUND. Recently I had a problem with jest, which uses this package for searching dependencies. And there was this error. But...

The native method of `fs.realpath()` cause error on RAM Disk created by imDisk. Angular developers might get this error when running `ng s` on RAM Disk when they using scss...

This fixes an issue where `browserify`/`resolve`'s default behavior does not match node's behavior. Per the discussion in #137, I updated the hardcoded list of extensions instead of sourcing it from...

This PR is semver-major. It does not yet pass on Windows. The goal is to bring this module into more accurate coherence with `require.resolve`.

Hi! We have a use case where we'd like to do our own resolve,dirname,join logic. We have a (crude) workaround for now, would you be interested in a PR that...

Since Node.js v8.9.0, a new `paths` option was made available to the core Node.js [`require.resolve`](https://nodejs.org/api/modules.html#modules_require_resolve_request_options) function: > `paths` [``](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type) Paths to resolve module location from. If present, these paths are...

Hiya! 👋 We've discussed this briefly on Slack, but I thought an issue would be easier to keep track of. I'm not sure what it would entail, so I'll just...