Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
path-extra
Advanced tools
path-extra contains methods that aren't included in the vanilla Node.js path package.
This module simply modifies the Node.js 'path' object with extra methods. It is a drop in replacement for the path
module.
$ npm install path-extra
var path = require('path-extra');
You can still use all of the vanilla Node.js path methods.
replaceExt(filePath, extension)
Replaces the extension from path with extension and returns the updated path string.
From the module replace-ext
.
Example:
path.replaceExt('dir/file.md', '.html')
// => 'dir/file.html'
normalizeTrim(filePath)
A path.normalize()
that trims trailing slashes. Useful for comparing file paths.
Example:
path.normalize('/foo/bar//baz/asdf/quux/../')
// => /foo/bar/baz/asdf/
path.normalizeTrim('/foo/bar//baz/asdf/quux/../')
// => /foo/bar/baz/asdf
base(filePath, [includeExt])
A smart wrapper for path.basename()
.
includeExt
is false
, returns the basename without an extension (path.basename(filePath, path.extname(filePath))
).includeExt
is true
, works like path.basename(filePath)
.includeExt
is false
by default.Example:
path.base('path/to/file.md')
// => file
path.base('path/to/file.md', false)
// => file
path.base('path/to/file.md', true)
// => file.md
removeExt(filepath)
Remove a path's extension.
Example:
path.removeExt('some/dir/file.ext')
// => some/dir/file
fileNameWithPostfix(filePath, postfix)
Append string to the end of the filename.
Example:
path.fileNameWithPostfix('path/to/file-name.ext', '-old')
// => path/to/file-name-old.ext
fileNameWithPrefix(filePath, prefix)
Append string to the beginning of the filename.
Example:
path.fileNameWithPrefix('path/to/file-name.ext', 'new-')
// => path/to/new-file-name.ext
homedir()
, tempdir()
, and datadir()
have been removed in version 4.0.0. Please use the ospath module instead.
(The MIT License)
Copyright (c) 2011-2015 JP Richardson
FAQs
path-extra contains methods that aren't included in the vanilla Node.js path package.
We found that path-extra demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
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.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.