Replies: 1 comment 7 replies
-
@lvcabral, thanks for reaching out. You will need to wait for A suggestion, using multiple different When attempting to reproduce this locally, everything works correctly: import { configure, fs, InMemory } from '@zenfs/core';
await configure({
mounts: {
'common:': InMemory,
'pkg:': InMemory,
'tmp:': InMemory,
'cachefs:': InMemory,
},
});
console.log(...fs.mounts.keys()); $ node index.js
/ /common: /pkg: /tmp: /cachefs: |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Doing the configuration like this, we end up with only one mount

cachefs:
How can I create separate inMemory mounts?
Beta Was this translation helpful? Give feedback.
All reactions