resolve-cwd

WebJar for resolve-cwd

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

resolve-cwd
Last Version

Last Version

3.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

resolve-cwd
WebJar for resolve-cwd
Project URL

Project URL

https://www.webjars.org
Source Code Management

Source Code Management

https://github.com/sindresorhus/resolve-cwd

Download resolve-cwd

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/resolve-cwd/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>resolve-cwd</artifactId>
    <version>3.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/resolve-cwd/
implementation 'org.webjars.npm:resolve-cwd:3.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/resolve-cwd/
implementation ("org.webjars.npm:resolve-cwd:3.0.0")
'org.webjars.npm:resolve-cwd:jar:3.0.0'
<dependency org="org.webjars.npm" name="resolve-cwd" rev="3.0.0">
  <artifact name="resolve-cwd" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='resolve-cwd', version='3.0.0')
)
libraryDependencies += "org.webjars.npm" % "resolve-cwd" % "3.0.0"
[org.webjars.npm/resolve-cwd "3.0.0"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.npm : resolve-from jar [5.0.0,6)

Project Modules

There are no modules declared in this project.

resolve-cwd Build Status

Resolve the path of a module like require.resolve() but from the current working directory

Install

$ npm install resolve-cwd

Usage

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 - Resolve the path of a module from a given path
  • import-from - Import a module from a given path
  • import-cwd - Import a module from the current working directory
  • resolve-pkg - Resolve the path of a package regardless of it having an entry point
  • import-lazy - Import a module lazily
  • 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.

Versions

Version
3.0.0
2.0.0