Erik Römmelt 9dab5e2dbc Update Node_modules | 5 years ago | |
---|---|---|
.. | ||
index.js | 5 years ago | |
license | 6 years ago | |
package.json | 5 years ago | |
readme.md | 5 years ago |
Resolve the path of a module like
require.resolve()
but from a given path
Unlike require.resolve()
it returns null
instead of throwing when the module can’t be found.
$ npm install --save resolve-from
const resolveFrom = require('resolve-from');
// there's a file at `./foo/bar.js`
resolveFrom('foo', './bar');
//=> '/Users/sindresorhus/dev/test/foo/bar.js'
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 require from the same fromDir
multiple times:
const resolveFromFoo = resolveFrom.bind(null, 'foo');
resolveFromFoo('./bar');
resolveFromFoo('./baz');
MIT © Sindre Sorhus