realpath-native

WebJar for realpath-native

Лицензия

Лицензия

MIT
Категории

Категории

Native Инструменты разработки
Группа

Группа

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

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

realpath-native
Последняя версия

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

1.1.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

realpath-native
WebJar for realpath-native
Ссылка на сайт

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

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

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

https://github.com/SimenB/realpath-native

Скачать realpath-native

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

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

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.webjars.npm : util.promisify jar [1.0.0,2)

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

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

realpath-native

This module is no longer necessary as all current releases of Node supports fs.realpath.native now.

Use the system's native realpath

NPM Version Linux & Mac Build Status

Greenkeeper Dependency Status

Node 9.3 added fs.realpath(Sync).native. On older Nodes you have to use process.binding to access the same function. This module does that check for you.

The advantage of the native realpath over fs.realpath is that the native one better supports paths on Windows.

On node 8 the function uses the old fs.realpath function.

Install

Install the module with npm:

$ npm install realpath-native

Usage

const realpath = require('realpath-native');

realpath('some-path'); // returns a promise

realpath.sync('some-path');

API

realpath(path)

Returns a promise for the resolved path of the input.

path

Type: string

realpath.sync(path)

Returns the resolved path of the input synchronously.

path

Type: string

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

Версия
1.1.0