
Research
/Security News
60 Malicious Ruby Gems Used in Targeted Credential Theft Campaign
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
is-path-cwd
Advanced tools
The `is-path-cwd` npm package is a simple utility that allows you to check if a given path is the current working directory (CWD). This can be particularly useful in applications where the working directory's state or location is relevant to the application's behavior or output. For example, it can be used to prevent certain operations from being performed in the CWD or to validate paths in CLI tools.
Check if a path is the current working directory
This feature allows you to check if a specific path is the current working directory. The function returns `true` if the given path is the CWD, and `false` otherwise. This can be useful for ensuring that certain operations are not performed in the CWD or for validating paths in applications.
const isPathCwd = require('is-path-cwd');
console.log(isPathCwd('.')); // true if the current directory is the CWD
console.log(isPathCwd('/some/other/path')); // false
The `is-path-inside` package checks if one path is inside another path. This is similar to `is-path-cwd` in that it deals with path relationships, but it offers a broader functionality by allowing you to check for any parent-child path relationship, not just the current working directory.
The `find-up` package allows you to find a file or directory by searching up from a given directory until reaching the root directory. While `is-path-cwd` specifically checks if a path is the CWD, `find-up` can be used to locate files or directories relative to the CWD or any other directory, providing a more versatile approach to working with filesystem paths.
Check if a path is the current working directory
npm install is-path-cwd
import isPathCwd from 'is-path-cwd';
isPathCwd(process.cwd());
//=> true
isPathCwd('unicorn');
//=> false
FAQs
Check if a path is the current working directory
The npm package is-path-cwd receives a total of 8,845,456 weekly downloads. As such, is-path-cwd popularity was classified as popular.
We found that is-path-cwd demonstrated a healthy version release cadence and project activity because the last version was released less than 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 RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.