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
This library can be used to sync a folder from your device to GitHub. This is a fun project and I do not recommend to push large files.
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.
npm i complete-file-system-cache
import { CompleteFileSystemCache } from 'complete-file-system-cache'
import { join } from 'path'
import { dirname, join } from 'node:path'
import { fileURLToPath } from 'node:url'
const __filename = fileURLToPath(import.meta.url)
const __dirname = dirname(__filename)
;(async () => {
const completeFileSystemCache = new CompleteFileSystemCache(__dirname)
await completeFileSystemCache.cacheFileSystem()
const results = completeFileSystemCache.search(
['/Users/datomarjanidze'],
['.git', 'node_modules', '.cache', '.angular']
)
})()
type FileSystemCache = string[]
FileSystemCache
Returns the FileSystemCache
if it exists.
projectRootDir: string
This directory path will be used to store the
file system cache.async
Promise<FileSystemCache>
Tries to load the file system from the cache file called
.complete-file-system-cache
or reads the whole file system and caches
everything.
async
Promise<FileSystemCache>
Reloads the cache.
includedPathSegments: string[]
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
.void
Cleans the cache file from the file system and the cached data from the
CompleteFileSystemCache
class object.
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.