realpath-native

WebJar for realpath-native

License

License

MIT
Categories

Categories

Native Development Tools
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

realpath-native
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

realpath-native
WebJar for realpath-native
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

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

Download realpath-native

How to add to project

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

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.npm : util.promisify jar [1.0.0,2)

Project Modules

There are no modules declared in this project.

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

Versions

Version
1.1.0