Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@file-services/overlay
Advanced tools
Overlay files and directories from one file system on top of another.
Overlay files and directories from one file system on top of another.
Overlay file system allows taking a native node file system ("lower fs") and overlay files and directories from an in-memory file system ("higher fs"). It can be used as a virtual layer providing a solution for storing and manipulating temporary data.
Read operations (readFile
, readdir
, stat
, etc.) are checking higher fs first, and fallback to lower fs.
Currently, all write operations go directly to the original lower fs.
Install library in project:
npm i @file-services/overlay
Then, use the programmatic API:
import { createOverlayFs } from "@file-services/overlay";
import { createMemoryFs } from "@file-services/memory";
import { nodeFs } from "@file-services/node";
const memFs = createMemoryFs({
src: {
"a.txt": `A`,
"b.txt": `B`,
},
});
const overlayFs = createOverlayFs(nodeFs /* lower fs */, memFs /* higher fs */);
// overlayFs.readFileSync('src/a.txt', 'utf8') === 'A'
createOverlayFs
also accepts a directory path as third parameter which specifies which directory in lower fs should be overlaid upon (defaults to lowerFs.cwd()
). This is important when overlaying a memory fs over native node fs and running on Windows. Memory fs uses posix-style paths, so the base directory is where memory's root /
begins to overlay.
MIT
FAQs
Overlay files and directories from one file system on top of another.
The npm package @file-services/overlay receives a total of 113 weekly downloads. As such, @file-services/overlay popularity was classified as not popular.
We found that @file-services/overlay demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.