
Research
/Security News
77 Firefox Extensions Linked to Crypto Wallet and Credential Theft
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.
@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 4,777,977 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.
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 uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.

Security News
NIST disclosed an unreleased AI tool called V-etalon and opened a broad inquiry into NVD modernization after years of automation plans produced no public enrichment system.

Security News
In his AI Council 2026 talk, Feross Aboukhadijeh covers recent package compromises, vulnerability discovery, and a more automated security model.