Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sindresorhus/resolve-cwd
Resolve the path of a module like `require.resolve()` but from the current working directory
https://github.com/sindresorhus/resolve-cwd
Last synced: 2 months ago
JSON representation
Resolve the path of a module like `require.resolve()` but from the current working directory
- Host: GitHub
- URL: https://github.com/sindresorhus/resolve-cwd
- Owner: sindresorhus
- License: mit
- Created: 2015-12-06T16:19:41.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2021-01-23T18:33:02.000Z (almost 4 years ago)
- Last Synced: 2024-04-14T11:09:16.767Z (8 months ago)
- Language: JavaScript
- Size: 10.7 KB
- Stars: 69
- Watchers: 6
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- Funding: .github/funding.yml
- License: license
- Security: .github/security.md
Awesome Lists containing this project
- awesome-github-star - resolve-cwd
- awesome-nodejs - resolve-cwd - 从当前工作目录解析模块的路径 (Uncategorized / Uncategorized)
README
# resolve-cwd
> Resolve the path of a module like [`require.resolve()`](https://nodejs.org/api/globals.html#globals_require_resolve) but from the current working directory
## Install
```
$ npm install resolve-cwd
```## Usage
```js
const resolveCwd = require('resolve-cwd');console.log(__dirname);
//=> '/Users/sindresorhus/rainbow'console.log(process.cwd());
//=> '/Users/sindresorhus/unicorn'console.log(resolveCwd('./foo'));
//=> '/Users/sindresorhus/unicorn/foo.js'
```## API
### resolveCwd(moduleId)
Like `require()`, throws when the module can't be found.
### resolveCwd.silent(moduleId)
Returns `undefined` instead of throwing when the module can't be found.
#### moduleId
Type: `string`
What you would use in `require()`.
## Related
- [resolve-from](https://github.com/sindresorhus/resolve-from) - Resolve the path of a module from a given path
- [import-from](https://github.com/sindresorhus/import-from) - Import a module from a given path
- [import-cwd](https://github.com/sindresorhus/import-cwd) - Import a module from the current working directory
- [resolve-pkg](https://github.com/sindresorhus/resolve-pkg) - Resolve the path of a package regardless of it having an entry point
- [import-lazy](https://github.com/sindresorhus/import-lazy) - Import a module lazily
- [resolve-global](https://github.com/sindresorhus/resolve-global) - Resolve the path of a globally installed module---
Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.