Socket
Socket
Sign inDemoInstall

pathe

Package Overview
Dependencies
0
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pathe

Universal filesystem path utils


Version published
Weekly downloads
8.5M
decreased by-0.68%
Maintainers
2
Install size
30.1 kB
Created
Weekly downloads
 

Changelog

Source

v1.1.2

compare changes

🩹 Fixes

  • Trim root folder / when calculating relative paths (#142)
  • Check process.cwd before calling it (#147)
  • Uppercase windows drive letters (#151)
  • resolveAlias: Handle aliases ending with trailing slash (#155)
  • relative: Handle different windows drive letters (#158)

🏡 Chore

❤️ Contributors

Readme

Source

🛣️ pathe

Universal filesystem path utils

version downloads size

❓ Why

For historical reasons, windows followed MS-DOS and using backslash for separating paths rather than slash used for macOS, Linux, and other Posix operating systems. Nowadays, Windows supports both Slash and Backslash for paths. Node.js's built in path module in the default operation of the path module varies based on the operating system on which a Node.js application is running. Specifically, when running on a Windows operating system, the path module will assume that Windows-style paths are being used. This makes inconsistent code behavior between Windows and POSIX. Compared to popular upath, pathe is providing identical exports of Node.js with normalization on all operations and written in modern ESM/Typescript and has no dependency on Node.js!

This package is a drop-in replacement of the Node.js's path module module and ensures paths are normalized with slash / and work in environments including Node.js.

💿 Usage

Install using npm or yarn:

# npm
npm i pathe

# yarn
yarn add pathe

# pnpm
pnpm i pathe

Import:

// ESM / Typescript
import { resolve } from 'pathe'

// CommonJS
const { resolve } = require('pathe')

Read more about path utils from Node.js documentation and rest assured behavior is ALWAYS like POSIX regardless of your input paths format and running platform!

Extra utilties

Pathe exports some extra utilities that do not exist in standard Node.js path module. In order to use them, you can import from pathe/utils subpath:

import { filename, normalizeAliases, resolveAlias } from 'pathe/utils'

License

MIT. Made with 💖

Some code used from Node.js project. See LICENSE.

FAQs

Last updated on 10 Jan 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc