This library provides a Path
class to manage paths, somehow like the URL class.
You'll be able to normalize, mutate, contact, etc... your paths,
and extract some useful information like the basename, dirname, stem and ext, etc...
It supports multiple configurations and environments (windows and posix style), and give you fine details and tuning on your paths.
Example:
import fs from 'node:fs/promises';
const ROOT = Path.process();
const TMP_DIR = ROOT.concat('tmp');
const DEMO_FILE = TMP_DIR.concat('demo.txt');
function rename(
path: Path,
newName: string,
): Promise<void> {
return fs.rename(
path.dirname().concat(newName).toString(),
);
}
await rename(DEMO_FILE, 'demo.js');
You may have a legitimate question: But path already exists on NodeJS 🤨 !?
Yes sure ! However, this library has many advantages:
- it works immediately in any environment (both browser and NodeJs, where
path
only works onnode
or using some polyfills) - when you use a
Path
object, you're guaranteed to have a normalized and functional path, instead of a simple string which could contain an invalid path or anything else. - this library covers some edge cases like:
dirname
orbasename
on a root path, or normalization of strange paths like:/a/../../j
,c:/d:
,/..
, which are not well handled by NodeJs'path
- with this library, like the
URL
class, if the path is invalid it will throw, instead of silently returning another invalid path => the NodeJS implementation has a lot of holes not covered.
- with this library, like the
UNLIKE NODEJS' PATH, this library throws if a path is or becomes invalid.
This prevents many unexpected behaviours on wrong paths.
For example new Path('/home').concat('/etc/')
will throw because the resulting Path is invalid (you cannot concat a root to another one).
On NodeJS, path.join('/home', '/etc')
gives '/home/etc'
which is probably not what you're expecting.
And it gets worse when you mix windows and posix paths...
In conclusion, this library is more resilient and offers better tools than the classical NodeJS' one.
yarn add @lifaon/path
# or
npm install @lifaon/path --save
This library supports:
- common-js (require): transpiled as es5, with .cjs extension, useful for old nodejs versions
- module (esm import): transpiled as esnext, with .mjs extension
CDN: https://cdn.skypack.dev/@lifaon/path
/** TYPES **/
type IPathInput =
| string // the path as a string
| IUncheckedPathSegments // the path as string segments (kind of .split('/'))
| Path // a Path
;
class Path {
static get posix(): IPathPlatformConfig;
static get windows(): IWindowsPathPlatformConfig;
static get generic(): IPathPlatformConfig;
static get currentPlatform(): IPathPlatformConfig | never;
/**
* Returns the current process working directory as a `Path`.
*/
static process(config?: IPathPlatformConfig): Path | never;
/**
* If `path` is a `Path`, returns `path`,
* else creates a `Path` from `path`.
* => useful if you want to accept many types as the `path` input of a function without sacrificing performances
*/
static of(path: IPathInput, config?: IPathPlatformConfig): Path;
readonly segments: IPathSegments;
readonly config: IPathPlatformConfig;
constructor(path: IPathInput, config?: IPathPlatformConfig);
/**
* Returns `true` if this Path is absolute.
*/
isAbsolute(): boolean;
/**
* Returns `true` if this Path is a pure root (ex: `c:` or `/`).
*/
isRoot(): boolean;
/**
* Returns true if this Path is a sub-path of `path` (after normalization).
*
* @example:
* `new Path('a/b/').isSubPathOf('a/')` => `true`
*/
isSubPathOf(parentPath: IPathInput): boolean;
/**
* Returns `true` if this Path is equal to `path` (after normalization).
*
* @example:
* `new Path('a/b/').equals('a/c/../b')` => `true`
*/
equals(path: IPathInput): boolean;
/**
* Returns the parent directory's Path of this Path.
* If this operation cannot be performed (ex: this Path is a "root"), the function throws.
*
* @example:
* `new Path('a/b').dirname()` => `./a`
* `new Path('c:/').dirname()` => throws
*/
dirname(): Path | never;
/**
* Like `.dirname()`, but returns `null` instead of throwing.
*
* @see dirname
*/
dirnameOptional(): Path | null;
/**
* Returns the basename of this Path:
* - if `ext` is provided, `ext` is removed from the basename
* - the function throws if the basename is special (ex: relative or root) and `allowedSpecialSegments` doesn't include it
*
* @param ext - default: `''`
* @param allowedSpecialSegments - default: `new Set()`
*
* @example:
* `new Path('/a/b').basename()` => 'b'
* `new Path('/').basename()` => throws
*/
basename(ext?: string, allowedSpecialSegments?: Iterable<ISpecialSegmentsAllowedForBasename>): string | never;
/**
* Like `.basename(...)`, but returns `null` instead of throwing.
*
* @see basename
*/
basenameOptional(ext?: string, allowedSpecialSegments?: Iterable<ISpecialSegmentsAllowedForBasename>): string | null;
/**
* Returns a tuple composed of the stem and the extension of the basename of this Path.
* If this operation cannot be performed (ex: this Path is a "root"), the function throws.
*/
stemAndExt(): IStemAndExtTuple | never;
/**
* Like `.stemAndExt(...)`, but returns `null` instead of throwing.
*
* @see stemAndExt
*/
stemAndExtOptional(): IStemAndExtTuple | null;
/**
* Returns the common base between this Path, and each `paths`:
* - if no common base are found, the function throws.
*
* @example:
* `new Path('a/b/').commonBase('a/c')` => `./a`
* `new Path('/a/b/').commonBase('d/e')` => throws
*/
commonBase(...paths: IPathInput[]): Path | never;
/**
* Like `.commonBase(...)`, but returns `null` instead of throwing.
* @see commonBase
*/
commonBaseOptional(...paths: IPathInput[]): Path | null;
/**
* Returns the relative Path from this Path to `path` (after normalization)
* - the function throw if it's not possible to reach `path` from this Path.
*
* @example:
* `new Path('a/b/').relative('a/d')` => `../d`
* `new Path('a/b/').relative('/a/d')` => throws
*/
relative(path: IPathInput): Path | never;
/**
* Like `.relative(...)`, but returns `null` instead of throwing.
* @see relative
*/
relativeOptional(path: IPathInput): Path | null;
/**
* Returns a new Path composed of this Path followed by 'paths'
* - equivalent of path.join() of NodeJS
*
* @example:
* - `new Path('./a').concat('b')` => `./a/b`
*/
concat(...paths: IPathInput[]): Path;
/**
* Returns a new absolute Path from this Path:
* - if this Path is absolute, this function returns a cloned path,
* - else it appends `root` before this Path
*
* @param root - default: `process.cwd()`
*/
resolve(root?: IPathInput): Path;
/**
* Clones the path. Kind of new Path(this, config) but faster.
*/
clone(config?: IPathPlatformConfig): Path;
/**
* Forces this Path to be converted to an absolute Path IF it is not already absolute.
*
* @param root - default: `process.cwd()`
*/
makeAbsolute(root?: IPathInput): Path;
/**
* Forces this Path to be converted to a relative path IF it is not already relative.
* => it replaces Path's first segment (the root) with '.'
*/
makeRelative(): Path;
/**
* Returns the concatenated string of the different segments of this Path, separated by `separa
* tor`.
* @param separator - default: `config.separator`
*/
toString(separator?: string): string;
/**
* Returns a 'file://' url having this Path as pathname
*/
toURL(): URL;
Path supports both windows and posix by default.
By using a specific config you can custom the behaviour: ex - to support only windows style paths -
new Path('C:\\temp\\myfile.html', Path.windows);
The config is transmitted to the descendants (ex: using concat
).
new Path(path).basename(ext?);
Path.currentPlatform.delimiterPattern;
new Path(path).dirname();
new Path(path).stemAndExt().ext;
new Path(path).isAbsolute();
new Path(path).concat(...paths);
new Path(path); // because the input is always normalized in the constructor
new Path(path, Path.posix);
new Path(from).relative(to);
WARN: new Path(path1).resolve(path2);
is not equivalent to path.resolve([...paths])
.
NodeJS has a strange behaviour: it processes the arguments from right to left.
This library processes them from left to right.
new Path(path1).resolve(path2);
may be translated to:
- if
path1
is absolute, returns this path - else concacts (path.join in NodeJS)
path2
andpath1
If path2
is omitted, like NodeJS, process.cwd
is used instead.
This is the correct equivalent:
// in NodeJS
path.resolve('/foo', '/bar', 'baz') // => would return /bar/baz
// with Path
new Path('baz') // './baz'
.resolve('/bar') // '/bar/baz'
.resolve('/foo'); // '/bar/baz' => there is no modification because the path is already absolute
Path.currentPlatform.separator;
new Path(path, Path.windows);