
Security News
Anthropic Identifies Biased Reasoning and Recklessness as Drivers of Claude’s PyPI Attack
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.
@jsonjoy.com/fs-node-to-fsa
Advanced tools
Adapter to convert Node.js fs API to File System Access API (FSA).
npm install @jsonjoy.com/fs-node-to-fsa
import { nodeToFsa } from '@jsonjoy.com/fs-node-to-fsa';
import * as fs from 'fs';
const dir = nodeToFsa(fs, '/path/to/directory', { mode: 'readwrite' });
// Now use the FSA API
for await (const [name, handle] of dir.entries()) {
console.log(name, handle.kind);
}
NodeFileSystemObserver implements the FileSystemObserver proposal
on top of the Node.js fs.watch API. It is a best-effort implementation, per
the proposal's allowance for local file systems: rename events are classified
into "appeared"/"disappeared" records by stat-ing the path, and no
"moved" records are ever produced.
import { nodeToFsa, NodeFileSystemObserver } from '@jsonjoy.com/fs-node-to-fsa';
import * as fs from 'fs';
const dir = nodeToFsa(fs, '/path/to/directory', { mode: 'readwrite' });
const observer = new NodeFileSystemObserver(fs, records => console.log(records));
await observer.observe(dir, { recursive: true });
nodeToFsa(fs, path, ctx) - Converts a Node.js fs module to a FileSystemDirectoryHandle.NodeFileSystemObserver - A FileSystemObserver implementation backed by fs.watch.FAQs
Adapter to convert Node.js fs API to File System Access API
The npm package @jsonjoy.com/fs-node-to-fsa receives a total of 5,592,140 weekly downloads. As such, @jsonjoy.com/fs-node-to-fsa popularity was classified as popular.
We found that @jsonjoy.com/fs-node-to-fsa 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
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.

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.