
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-to-fsa
Advanced tools
Adapter to convert Node.js fs API to File System Access API
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 6,933,122 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
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.