Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
complete-file-system-cache
Advanced tools
Caches every file that exists in the file system and stores the whole file system files
npm i complete-file-system-cache
Caches every file that exists in the file system and stores the whole file system files, where you want it to store and based on that it can do fast search in the cached content.
import { CompleteFileSystemCache } from 'complete-file-system-cache'
import { dirname } from 'node:path'
import { fileURLToPath } from 'node:url'
const __filename = fileURLToPath(import.meta.url)
const __dirname = dirname(__filename)
const completeFileSystemCache = new CompleteFileSystemCache(__dirname)
completeFileSystemCache.cacheFileSystem()
const results = completeFileSystemCache.search(
['/Users/datomarjanidze'],
['.git', 'node_modules', '.cache', '.angular']
)
export type FilePaths = string[]
FileSystemCache
Returns the FileSystemCache
if it exists.
projectRootDir: string
This directory path will be used to store the
file system cache.void
Creates a file system cache if it already does not exist.
void
Recreates the file system cache.
includedPathSegments: string[] | RegExp
Path segments which should
be included from the search results.excludedPathSegments: string[]
Default: []
Path segments
which should be excluded from the search results.ignoreCase
Default: true
Executes case insensitive search,
if the provided argument is true
.FilePaths
void
Cleans the cache.
FAQs
Caches every file that exists in the file system and stores the whole file system files
The npm package complete-file-system-cache receives a total of 0 weekly downloads. As such, complete-file-system-cache popularity was classified as not popular.
We found that complete-file-system-cache 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.