resolve-cwd

WebJar for resolve-cwd

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

resolve-cwd
Последняя версия

Последняя версия

3.0.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

resolve-cwd
WebJar for resolve-cwd
Ссылка на сайт

Ссылка на сайт

https://www.webjars.org
Система контроля версий

Система контроля версий

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

Скачать resolve-cwd

Как подключить последнюю версию

<!-- 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"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.webjars.npm : resolve-from jar [5.0.0,6)

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
3.0.0
2.0.0