Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
is-relative-path
Advanced tools
The is-relative-path npm package is a simple utility that helps determine if a given path is a relative path. This can be useful in various scenarios where path validation or manipulation is required.
Check if a path is relative
This feature allows you to check if a given path is relative. It returns true if the path is relative and false if it is absolute.
const isRelativePath = require('is-relative-path');
console.log(isRelativePath('./some/path')); // true
console.log(isRelativePath('/absolute/path')); // false
The is-absolute package is the counterpart to is-relative-path, focusing on determining if a path is absolute. While it serves a different primary purpose, it can be used in conjunction with is-relative-path for comprehensive path validation.
The path module is a core Node.js module that provides utilities for working with file and directory paths. It includes methods for checking if paths are absolute or relative, among other functionalities. It is more comprehensive but also more complex than is-relative-path.
Sometimes I just want to scream
npm install is-relative-path
isRelative(path)
path
<string>
<boolean>
var isRelative = require('is-relative-path');
isRelative('../'); // true
isRelative('/'); // false
Version | Code |
---|---|
1.x | (path) => path[0] === '.' |
2.x | (path) => !path.isAbsolute(path) |
path | v1.x | v2.x |
---|---|---|
"" | false | true |
"." | true | true |
".." | true | true |
"foo" | false | true |
"/foo" | false | false |
FAQs
Whether or not a given path is relative
We found that is-relative-path demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.