
Research
/Security News
Malicious Chrome and Firefox Extensions Steal Crypto Traders’ Session and Wallet Data
Malicious Chrome and Firefox extensions target Axiom Trade and Padre users, stealing session tokens and wallet data.
@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 3,294,106 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.

Research
/Security News
Malicious Chrome and Firefox extensions target Axiom Trade and Padre users, stealing session tokens and wallet data.

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.