
Security News
GPT-6 Astra Attempts Supply Chain Attacks Against Open Source Maintainers in Testing
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.
@jsonjoy.com/fs-node
Advanced tools
In-memory filesystem with Node.js fs-compatible API.
npm install @jsonjoy.com/fs-node
import { Volume } from '@jsonjoy.com/fs-node';
const vol = new Volume();
vol.writeFileSync('/hello.txt', 'Hello, World!');
console.log(vol.readFileSync('/hello.txt', 'utf8')); // Hello, World!
import { Volume } from '@jsonjoy.com/fs-node';
const vol = Volume.fromJSON({
'/app/index.js': 'console.log("Hello");',
'/app/package.json': '{"name": "app"}',
});
console.log(vol.readdirSync('/app')); // ['index.js', 'package.json']
The Volume class implements Node.js fs module's synchronous and callback APIs:
readFile, readFileSyncwriteFile, writeFileSyncmkdir, mkdirSyncreaddir, readdirSyncstat, statSyncunlink, unlinkSyncIt also exposes a promises property for the Promise-based API:
const data = await vol.promises.readFile('/hello.txt', 'utf8');
Apache-2.0
FAQs
In-memory filesystem with Node.js fs-compatible API
The npm package @jsonjoy.com/fs-node receives a total of 5,317,373 weekly downloads. As such, @jsonjoy.com/fs-node popularity was classified as popular.
We found that @jsonjoy.com/fs-node demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.