wasmedge-quickjs icon indicating copy to clipboard operation
wasmedge-quickjs copied to clipboard

Support `fs` Node API in wasmedge-quickjs

Open alabulei1 opened this issue 3 years ago • 0 comments

Motivation

In WasmEdge, we already support JavaScript, NPM packages, ES6 modules, and even using Rust to implement JS APIs.

However, one of the most commonly requested features is full node.js compatibility in WasmEdge. We can implement all node.js APIs in either JavaScript or Rust. This issue tracks this feature. Most of the code is in the wasmedge-quickjs repo

The node.js APIs can be implemented in JS (in the modules directory) and in Rust / C (in the src/internal_module directory).

This issue is to add fs API.

module_name language
fs rust/c

alabulei1 avatar Jul 15 '22 11:07 alabulei1