Pathogen
Pathogen is a path utility library for node.js and browsers.
It works similarly to (and borrows some code from) node's own path.
Why
The reason why this package exists is that node path works differently between systems. This is problematic when using paths as identifiers or object keys in your programs. You could use path.win32
/ path.posix
but that is usually not available in browserified versions of path
.
Pathogen also solves a few gripes I always had with node.js path.
But most of all, this is a pointless exercise in futility.
How
Pathogen always normalizes the input paths to be in unix style, and can optionally convert back to windows style, or automatically based on system.
You can always pass a mix of windows and unix paths to any method, they will all be converted to unix paths internally.
Example
const fs = require('fs')
const pathogen = require('pathogen')
const basePath = '/some/folder/'
const relPath = './src/files/file.txt'
const joined = pathogen(basePath, relPath)
fs.readFile(joined, () => {})
API
Base (Unix)
pathogen(path, ...path)
pathogen.cwd(path)
pathogen.basename(path)
pathogen.extname(path)
pathogen.dirname(path)
pathogen.resolve(path, path, [...path])
pathogen.relative(path, path)
Windows
const pathogen = require('pathogen')
pathogen.win(path, ...path)
pathogen.win.cwd(path)
pathogen.win.basename(path)
pathogen.win.extname(path)
pathogen.win.dirname(path)
pathogen.win.resolve(path, path, [...path])
pathogen.win.relative(path, path)
System
const pathogen = require('pathogen')
pathogen.sys(path, ...path)
pathogen.sys.cwd(path)
pathogen.sys.basename(path)
pathogen.sys.extname(path)
pathogen.sys.dirname(path)
pathogen.sys.resolve(path, path, [...path])
pathogen.sys.relative(path, path)
Differences from path
Path fails to join with empty string:
path.join('', '/a')
pathogen('', '/a')
Path returns ./
when ./
is passed, forgetting to remove trailing slashes:
path.normalize('./')
pathogen('./')
Path can't normalize specifically to posix:
path.posix.normalize('/./..//\\\\\\')
pathogen('/./..//\\\\\\')