Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.