npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pathogen

v1.0.0

Published

path utilities for node.js and browsers

Downloads

14

Readme

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) // cleans up and joins the paths as an unix path string.

pathogen.cwd(path) // current working directory, unix
pathogen.basename(path) // basename
pathogen.extname(path) // extension
pathogen.dirname(path) // dirname, unix
pathogen.resolve(path, path, [...path]) // resolved path, unix
pathogen.relative(path, path) // path relative to path, unix

Windows

const pathogen = require('pathogen')

pathogen.win(path, ...path) // cleans up and joins the paths as a windows path string.

pathogen.win.cwd(path) // current working directory, windows
pathogen.win.basename(path) // basename
pathogen.win.extname(path) // extension
pathogen.win.dirname(path) // dirname, windows
pathogen.win.resolve(path, path, [...path]) // resolved path, windows
pathogen.win.relative(path, path) // path relative to path, windows

System

const pathogen = require('pathogen')

pathogen.sys(path, ...path) // cleans up and joins the paths as a system path string.

pathogen.sys.cwd(path) // current working directory, system
pathogen.sys.basename(path) // basename
pathogen.sys.extname(path) // extension
pathogen.sys.dirname(path) // dirname, system
pathogen.sys.resolve(path, path, [...path]) // resolved path, system
pathogen.sys.relative(path, path) // path relative to path, system

Differences from path

Path fails to join with empty string:

path.join('', '/a') // /a
pathogen('', '/a') // ./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('/./..//\\\\\\') // /