You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP

normalize-path

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

normalize-path

Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.

3.0.0
latest
Version published
Weekly downloads
65M
-8.17%
Maintainers
3
Weekly downloads
 
Created

What is normalize-path?

The normalize-path npm package is designed to normalize file paths, making them consistent across different operating systems and environments. It can be particularly useful for handling file paths in a cross-platform manner, ensuring that paths are correctly formatted and can be reliably compared or manipulated regardless of the underlying OS.

What are normalize-path's main functionalities?

Normalize slashes

Converts Windows backslash paths to POSIX forward slashes, making paths consistent across different environments.

"const normalize = require('normalize-path');
console.log(normalize('C:\\path\\to\\file')); // 'C:/path/to/file'"

Remove trailing slashes

Optionally removes trailing slashes from paths, which can be useful for comparing directory paths or constructing URLs.

"const normalize = require('normalize-path');
console.log(normalize('path/to/resource/', false)); // 'path/to/resource'"

Normalize for use in URLs

Cleans up the path by resolving dot segments (e.g., '..' and '.') to produce a canonical path. This is particularly useful for creating clean URLs.

"const normalize = require('normalize-path');
console.log(normalize('/foo/bar//baz/asdf/quux/..')); // '/foo/bar/baz/asdf'"

Other packages similar to normalize-path

FAQs

Package last updated on 19 Apr 2018

Did you know?

Socket

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