-
-
Notifications
You must be signed in to change notification settings - Fork 148
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
question about implementation details #48
Comments
To partly answer my own question
https://nodejs.org/api/fs.html#fs_fs_open_path_flags_mode_callback |
|
Hope it’s okay to comment here! There is no documentation on it, and while it’s likely going to keep being around for a long time, the long-term direction in which Node is headed is replacing it by explicit |
@addaleax Cool. Since it's only used for older versions (0.6 and before, I believe?) probably we can just add a guard around the require(). |
I think |
Or even just |
Hm – I doubt it matters much. :D |
thank you both |
Hi, I like graceful-fs an am thinking to use it in http://npmjs.com/package/fildes I have a couple of questions and hope it is ok to ask here.
Retrying the queue, happens on some of the 'shimed' methods like close, closeSync. Does that work in multiple child processes that each try to write many files, as I suppose if one child process gets too many file descriptors error and the other process then calls close, the first isn't informed that something happend?
What does the polyfills.js and legacy-streams.js do? and what impact has it if I only want to use Node.js 4.x
what is require('constants'), seems to be something Node.js internal is that correct? Is there any documentation on it somewhere?
Thanks and I hope you don't mind me asking here.
The text was updated successfully, but these errors were encountered: