New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@bytecodealliance/jco-node-fs

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bytecodealliance/jco-node-fs

Native Node.js filesystem helpers for Jco

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
14K
-26.64%
Maintainers
4
Weekly downloads
 
Created
Source

@bytecodealliance/jco-node-fs

Native Node.js filesystem helpers used by Jco's WASI shims.

The package intentionally exposes only filesystem operations that the Node.js standard library cannot provide. It is not a general-purpose filesystem API.

import { open } from 'node:fs/promises';
import { fadvise } from '@bytecodealliance/jco-node-fs';

const file = await open('data.bin', 'r');
try {
    fadvise(file.fd, 0n, 0n, 'sequential');
} finally {
    await file.close();
}

FAQs

Package last updated on 23 Aug 2026

Related posts