Blame view

node_modules/resolve-from/readme.md 992 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
  # resolve-from [![Build Status](https://travis-ci.org/sindresorhus/resolve-from.svg?branch=master)](https://travis-ci.org/sindresorhus/resolve-from)
  
  > Resolve the path of a module like [`require.resolve()`](http://nodejs.org/api/globals.html#globals_require_resolve) but from a given path
  
  
  ## Install
  
  ```
  $ npm install --save resolve-from
  ```
  
  
  ## Usage
  
  ```js
  const resolveFrom = require('resolve-from');
  
  // there's a file at `./foo/bar.js`
  
  resolveFrom('foo', './bar');
  //=> '/Users/sindresorhus/dev/test/foo/bar.js'
  ```
  
  
  ## API
  
  ### resolveFrom(fromDir, moduleId)
  
  #### fromDir
  
  Type: `string`
  
  The directory to resolve from.
  
  #### moduleId
  
  Type: `string`
  
  What you would use in `require()`.
  
  
  ## Tip
  
  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');
  ```
  
  
  ## License
  
  MIT © [Sindre Sorhus](http://sindresorhus.com)