orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
57 lines (30 loc) • 992 B
Markdown
//nodejs.org/api/globals.html#globals_require_resolve) but from a given path
```
$ npm install --save resolve-from
```
```js
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`
The 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:
```js
const resolveFromFoo = resolveFrom.bind(null, 'foo');
resolveFromFoo('./bar');
resolveFromFoo('./baz');
```
MIT © [Sindre Sorhus](http://sindresorhus.com)
> Resolve the path of a module like [`require.resolve()`](http: