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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@bemoje/path

v2.0.0

Published

Cross-platform path utilities extending upath with validation, manipulation, and inspection helpers.

Readme

@bemoje/path

Cross-platform path utilities extending upath with validation, manipulation, and inspection helpers.

TypeScript Module

Exports

  • cwd
  • dirnameDeep: Returns the absolute path of the parent directory of the given path.
  • hasBasename: Checks if a file path has any of the specified basenames.
  • hasExtname: Checks if a file path has any of the specified file extensions.
  • hasParentDirname: Whether fspath is a subpath of a parent directory with the given name.
  • isDotFile: Determines if a given filepath is a dotfile.
  • isExtValid: Check if a file extension is valid. Invalid: - empty string - single dot: "." - illegal characters: <>"|?*:
  • isRelative: Whether a path is a relative string, ie. not absolute.
  • isUnc: Determines if a given filepath is a UNC path.
  • isValidWin32.aspx
  • prefixFilename: Append string to the beginning of the filename.
  • root: Returns the root directory of a given path.
  • suffixFilename: Append string to the end of the filename.
  • toCwdRelative path to the {p} path. At times we have two absolute paths, and we need to derive the relative path from one to the other. This is actually the reverse transform of path.resolve.
  • toWin32: Ensures win32 backslashes are used instead of forward slashes.

Installation

npm install @bemoje/path

Usage

Working Directory Helpers

import { cwd, toCwdRelative } from '@bemoje/path'

// Join paths from cwd
cwd('src', 'index.ts') // /home/user/project/src/index.ts

// Convert absolute to cwd-relative
toCwdRelative('/home/user/project/src/index.ts') // 'src/index.ts'

Filename Manipulation

import { prefixFilename, suffixFilename } from '@bemoje/path'

prefixFilename('path/to/file.ts', 'new-') // 'path/to/new-file.ts'
suffixFilename('path/to/file.ts', '.bak') // 'path/to/file.bak.ts'

Path Inspection

import { hasExtname, hasBasename, hasParentDirname, isDotFile, isRelative, isUnc } from '@bemoje/path'

hasExtname('index.ts', ['ts', 'tsx']) // true
hasExtname.ts('index.ts') // true
hasExtname.json('config.json') // true

hasBasename('src/index.ts', 'index.ts') // true
hasParentDirname('src/lib/utils.ts', 'lib') // true

isDotFile('.gitignore') // true
isRelative('./src') // true
isUnc('\\\\server\\share') // true

Validation

import { isValidWin32, isExtValid } from '@bemoje/path'

isValidWin32('C:\\Users\\file.txt') // true
isValidWin32('C:\\Users\\file<>.txt') // false

isExtValid('.ts') // true
isExtValid('') // false
isExtValid('.') // false

Directory and Root Helpers

import { dirnameDeep, root, toWin32 } from '@bemoje/path'

dirnameDeep('a/b/c/d', 2) // 'a/b'
root('/home/user') // '/'
toWin32('path/to/file') // 'path\\to\\file'