
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
is-path-inside
Advanced tools
The is-path-inside npm package is used to determine if one path is inside another path. This can be useful for ensuring that a file or directory is contained within a specific directory structure, which is a common requirement in file system operations to maintain security and proper organization.
Check if a path is inside another path
This feature allows you to check if one path is inside another. It returns true if the first path is inside the second path, otherwise false.
const isPathInside = require('is-path-inside');
console.log(isPathInside('/some/dir', '/some/dir/file.txt')); // true
console.log(isPathInside('/some/dir', '/some/other/dir')); // false
This package provides similar functionality to is-path-inside, allowing you to check if one path is inside another. It is an alternative that can be used interchangeably with is-path-inside for the same purpose.
Contains-path is another npm package that checks if a path is contained within another path. It differs slightly in API and usage, but serves a similar purpose to is-path-inside.
Check if a path is inside another path
$ npm install is-path-inside
import isPathInside from 'is-path-inside';
isPathInside('a/b/c', 'a/b');
//=> true
isPathInside('a/b/c', 'x/y');
//=> false
isPathInside('a/b/c', 'a/b/c');
//=> false
isPathInside('/Users/sindresorhus/dev/unicorn', '/Users/sindresorhus');
//=> true
Note that relative paths are resolved against process.cwd()
to make them absolute.
Important: This package is meant for use with path manipulation. It does not check if the paths exist nor does it resolve symlinks. You should not use this as a security mechanism to guard against access to certain places on the file system.
Type: string
The path that should be inside parentPath
.
Type: string
The path that should contain childPath
.
FAQs
Check if a path is inside another path
The npm package is-path-inside receives a total of 34,698,389 weekly downloads. As such, is-path-inside popularity was classified as popular.
We found that is-path-inside 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.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.