Skip to content
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

fs: add promises API #18297

Closed
wants to merge 4 commits into from
Closed

fs: add promises API #18297

wants to merge 4 commits into from

Commits on Feb 6, 2018

  1. Configuration menu
    Copy the full SHA
    05e44b3 View commit details
    Browse the repository at this point in the history
  2. fs: add FSReqPromise

    jasnell committed Feb 6, 2018
    Configuration menu
    Copy the full SHA
    18d0261 View commit details
    Browse the repository at this point in the history
  3. fs: add FileHandle object fd wrapper

    The `node::fs::FileHandle` object wraps a file descriptor
    and will close it on garbage collection along with a
    process warning. The intent is to prevent (as much as
    possible) file descriptors from being leaked if the user
    does not close them explicitly.
    jasnell committed Feb 6, 2018
    Configuration menu
    Copy the full SHA
    d4c93e8 View commit details
    Browse the repository at this point in the history
  4. fs: add initial set of fs.promises APIs

    Initial set of fs.promises APIs with documentation and one
    benchmark.
    jasnell committed Feb 6, 2018
    Configuration menu
    Copy the full SHA
    2f150c9 View commit details
    Browse the repository at this point in the history