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

patha

v0.4.1

Published

File paths library. All you need to work with paths. Tiny drop-in replacement for 'path'. Works in Node, Browser, and Deno.

Downloads

222

Readme

File paths library. All you need to work with paths. Tiny drop-in replacement for 'path'. Works in Node, Browser, and Deno.

Install

npm install --save patha

patha is tiny and treeshakable.

Usage

Automatic (depends on your build system)

import * as patha from "patha"

Node

import * as patha from "patha/dist/index.node.mjs"

Node CJS

const patha = require("patha/dist/index.node.cjs")

Browser

import * as patha from "patha/dist/index.browser.mjs"

Browser Legacy

import * as patha from "patha/dist/index.browser.legacy.js"

Deno

import * as patha from "patha/dist/index.deno.mjs"

API

patha is a drop-replacement for path, which is explained in the Nodejs documentation.

import {
  basename,
  delimiter,
  dirname,
  extname,
  format,
  isAbsolute,
  join,
  normalize,
  parse,
  posix,
  relative,
  resolve,
  sep,
  toNamespacedPath,
  win32,
} from "patha"

Additionally, patha supports the following functions:

addExeExt (function)

Add bin extension to the given binary name.

Parameters:

  • name (string) - The name you want to add the shell extension to
  • win_ext (string) - Defaults to .exe on Windows
  • other_ext (string) - Defaults to "" On other platforms.

returns: string

import { addExeExt } from "patha"

addExeExt("path/to/file-name") // gives "path/to/file-name.exe" on Windows and "path/to/file-name" on others

addNamePrefix (function)

Adds a prefix to the start of the name of the given path

Parameters:

  • path (string) - The given file path
  • prefix (string) - The prefix to add to the start of the file name

returns: string

import { addNamePrefix } from "patha"

addNamePrefix("path/to/file-name.ext", "new-") // gives "path/to/new-file-name.ext"

addNameSuffix (function)

Adds a suffix to the end of the name of the given path

Parameters:

  • path (string) - The given file path
  • suffix (string) - The suffix to add to the end of the file name

returns: string

import { addNameSuffix } from "patha"

addNameSuffix("path/to/file-name.ext", "-old") // gives "path/to/file-name-old.ext"

addNameSuffix("path/to/file-name.ext", ".test") // gives "path/to/file-name.test.ext"

addShExt (function)

Add a native shell extension to the given name.

Parameters:

  • name (string) - The name you want to add the shell extension to
  • win_ext (string) - .cmd on Windows
  • other_ext (string) - .sh On others.

returns: string

import { addShExt } from "patha"

addShExt("path/to/file-name") // gives "path/to/file-name.cmd" on Windows and "path/to/file-name.sh" on others

addShExt("path/to/file-name", ".bat") // gives "path/to/file-name.bat" on Windows and "path/to/file-name.sh" on others

addShRelativePrefix (function)

Prefix a ./ for unix shell and nothing for cmd.

Parameters:

  • path (string) - The given path

returns: string

import { addShRelativePrefix } from "patha"

addShRelativePrefix("some/file-name") // gives "some/file-name" on Windows and "./some/file-name" on others.

name (function)

Get the name of the given file path.

By default the file extension is included in the returned name. To remove the extension, set the second parameter to false.

Parameters:

  • path (string) - The given file path
  • includeExtension (boolean) - If the name should include the file extension as well

returns: string

import { name } from "patha"

name("path/to/file.md") // gives "file.md"

name("path/to/file.md", false) // gives "file"

normalizeTrim (function)

Normalizes the path and removes the trailing slashes.

Parameters:

  • path (string) - The given file path

returns: string

import { normalize, normalizeTrim } from "patha"

normalizeTrim("/foo/bar//baz/asdf/hello/../") // gives "/foo/bar/baz/asdf"

normalize("/foo/bar//baz/asdf/hello/../") // gives "/foo/bar/baz/asdf/"

removeExt (function)

Remove a path's extension.

Parameters:

  • path (string) - The given path

returns: string

import { removeExt } from "patha"

removeExt("some/dir/file.ext") // gives "some/dir/file"

replaceExt (function)

Replaces the extension from path with extension and returns the updated path string.

Does not replace the extension if path is not a string or is empty.

Parameters:

  • path (string) - The given path
  • extension (string) - The extension to replace

returns: any

import { replaceExt } from "patha"

replaceExt("path/to/file.md", ".html") // gives "path/to/file.html"

isPathInside (function)

Check if a path is inside another path.

Note that relative paths are resolved against process.cwd() to make them absolute.

This function does not check if the paths exist and it only works with strings.

Parameters:

  • childPath (string)
  • parentPath (string)

returns: boolean

import { isPathInside } from "patha"

isPathInside("a/b/c", "a/b")
//=> true

isPathInside("a/b/c", "x/y")
//=> false

isPathInside("a/b/c", "a/b/c")
//=> false

isPathInside("/Users/some/dev/aa", "/Users/some")
//=> true

🤝 Contributing

You can sponsor my work here:

https://github.com/sponsors/aminya

Pull requests, issues and feature requests are welcome. See the Contributing guide.