resolve-from
Advanced tools
Resolve the path of a module like `require.resolve()` but from a given path
Weekly downloads
Changelog
Breaking:
undefined
instead of null
when the module cannot be found (#12) 188ed7dEnhancements:
https://github.com/sindresorhus/resolve-from/compare/v4.0.0...v5.0.0
Readme
Resolve the path of a module like
require.resolve()
but from a given path
$ npm install resolve-from
const resolveFrom = require('resolve-from');
// There is a file at `./foo/bar.js`
resolveFrom('foo', './bar');
//=> '/Users/sindresorhus/dev/test/foo/bar.js'
Like require()
, throws when the module can't be found.
Returns undefined
instead of throwing when the module can't be found.
Type: string
Directory to resolve from.
Type: string
What you would use in require()
.
Create a partial using a bound function if you want to resolve from the same fromDirectory
multiple times:
const resolveFromFoo = resolveFrom.bind(null, 'foo');
resolveFromFoo('./bar');
resolveFromFoo('./baz');
MIT © Sindre Sorhus
Resolve the path of a module like `require.resolve()` but from a given path
The npm package resolve-from receives a total of 49,922,537 weekly downloads. As such, resolve-from popularity was classified as popular.
We found that resolve-from demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.It has 1 open source maintainer collaborating on the project.