
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@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 9,421,750 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.
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
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.