🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

path-resolver

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

path-resolver

returns a valid filesystem path.

0.0.2
latest
Source
npm
Version published
Weekly downloads
934
81.71%
Maintainers
1
Weekly downloads
 
Created
Source

path-resolver

returns a valid filesystem path.

New stuff:

  • v0.0.2
    • resolves to process.cwd() if they aren't absolute paths

What?

this is a really insanely simple module to do path normalization, and existence checking. How simple? <30 lines of coffeescript.

How?

npm install path-resolver and then require('path-resolver').<method> where method is guess,sync, or async.

Examples

sync check (existential checking is done, in sync)

if ((path = require('path-resolver').sync("/path/to/file.ext")) != false)
  console.log("valid path given: "+path);

async check (existential checking is done, async [needs callback])

require('path-resolver').async("/path/to/file.ext",function(path){
  if (path != false)
    console.log("valid path given: "+path);
  else
    console.log("bad path!");
});

and guess check (no existential checks done)

if ((path = require('path-resolver').guess("/path/to/file.ext")) != false)
  console.log("probably valid path given (syntax is correct): "+path);

A bit more info...

so a sync check uses fs.existsSync whereas async uses fs.exists. guess does check at all, just syntax verifies the path. if any of these methods return false, the path syntax was invalid, or (if using sync or async) the path doesn't exist in the filesystem.

Keywords

path

FAQs

Package last updated on 19 Oct 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts