-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: added fs built-in module #1752
base: master
Are you sure you want to change the base?
Conversation
Looks cool but wouldn't mocking the |
@casr const {vol} = require('memfs');
vol.fromJSON({
'/package.json': '...'
}); Also, it is not about allowing to read files from your repo, but for packages that expect there to be a file system, they would just work. |
Oh that's neat too! But my main point is that Browserify tries to maintain strict compatibility with Node but in this instance I believe that compatibility would be compromised. I think this be quite compelling as a Browserify transform, however. |
All modules that do I/O (like The thing is that Browserify currently has nothing as I personally think |
thanks for the PR! i also think browserify shouldn't provide a default
something like you can still use {
"browser": { "fs": "memfs" }
} and yeah @casr's idea about a transform that uses memfs to create a virtual filesystem sounds rad too! |
@goto-bus-stop The point of Browserify is to provide Node's API in the browser. All Node modules that Browserify shims don't make much sense in the browser but are required to make NPM modules work. So, I don't really see your point. |
there are expectations around how core modules work. the i think memfs is more widely useful but some of the same issues apply when thinking about making it default behaviour. when i write a file, sometimes i expect it to be always available, sometimes i expect it to disappear after a reboot, sometimes i expect it to be available to other programs, sometimes i expect it to be edited by the user, etc, and all these possible expectations are impossible to satisfy in the browser with just the Node i guess my point is that, while memfs provides the same API, it provides a different functionality--functionality that is a good alternative in some cases but not others. other browserify modules provide the same API and the same functionality as the core equivalents, and if some methods cannot provide the same functionality, they aren't provided at all. |
The problem is with I/O, JavaScript does not do I/O. That's why Node.js was created in the first place. No Node.js I/O module can be ported to browser and behave the same. Your mentioned example is incorrect, in the sense that |
No description provided.