nodejs / loaders

ECMAScript Modules Loaders
MIT License
130 stars 17 forks source link

Official `fs` overlay #172

Open arcanis opened 1 year ago

arcanis commented 1 year ago

With the addition of PRs like https://github.com/nodejs/node/pull/48658 or https://github.com/nodejs/node/pull/49593 virtual filesystem overlays are in an uncomfortable position where Node both doesn't respect anymore its own APIs (ie fs). We currently workaround that by patching some primitives from process.binding('fs'), but this is untenable, even at short term (https://github.com/nodejs/node/pull/50687).

We often heard that "one of our goals is to allow mocking of modules, including of builtins; but only via loaders". That's fine to me, but given the recent acceleration of PRs aiming to shortcut fs it suggests now is the time to start discussing in details what such an overlay would look like that would satisfy everyone.

targos commented 1 year ago

How should we start the discussion? Depending on what we are talking about, this might interest the @nodejs/fs team, and people working on the permissions model.

Maybe we should try define first where this overlay would be placed?

There are several layers, currently:

arcanis commented 1 year ago

The current way of patching fs lives between "C++ bindings" and "Internal JS functions" layers, but on the JS side. This model worked quite well so far, proving very flexible in the context of JS packages.

As for permissions, I suspect we'd want any hooking API to still live within the limits of whatever permissions were given to the process. We don't want to accidentally open a bypass, and implementing this layer in JS-land would prevent that (my understanding being that permissions are implemented at a lower level?).

joyeecheung commented 1 year ago

This sounds like a nodejs/node issue. We are also looking into it for single executable applications for example https://github.com/nodejs/single-executable/issues/37