
Security News
Open VSX Unblocks Extension IDs Used in Malware Campaign
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.
@jsonjoy.com/fs-fsa
Advanced tools
File System Access API implementation backed by core filesystem primitives
File System Access API implementation backed by @jsonjoy.com/fs-core primitives.
Provides a File System Access API
implementation that works with the Superblock filesystem abstraction.
npm install @jsonjoy.com/fs-fsa
import { fsa } from '@jsonjoy.com/fs-fsa';
const { dir, core, FileSystemObserver } = fsa({ mode: 'readwrite' });
// Create a file
const fileHandle = await dir.getFileHandle('hello.txt', { create: true });
const writable = await fileHandle.createWritable();
await writable.write('Hello, World!');
await writable.close();
// Read a file
const file = await fileHandle.getFile();
const contents = await file.text();
console.log(contents); // 'Hello, World!'
Apache-2.0
FAQs
File System Access API implementation backed by core filesystem primitives
The npm package @jsonjoy.com/fs-fsa receives a total of 8,836,762 weekly downloads. As such, @jsonjoy.com/fs-fsa popularity was classified as popular.
We found that @jsonjoy.com/fs-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
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.