node-graceful-fs 4.2.10-1 source package in Ubuntu
Changelog
node-graceful-fs (4.2.10-1) unstable; urgency=medium * New upstream release. -- Julien Puydt <email address hidden> Fri, 22 Apr 2022 18:42:10 +0200
Upload details
- Uploaded by:
- Debian Javascript Maintainers
- Uploaded to:
- Sid
- Original maintainer:
- Debian Javascript Maintainers
- Architectures:
- all
- Section:
- javascript
- Urgency:
- Medium Urgency
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
node-graceful-fs_4.2.10-1.dsc | 2.4 KiB | a9a9b87d613bfcb5d2281807d889185ce49d89e70b35e744cbc49957fd92698a |
node-graceful-fs_4.2.10.orig-types-graceful-fs.tar.gz | 1.8 KiB | 9f7cea938f3682213a2489b8b23ce27f2f4b15bfee297d50a49ef2a2296c775d |
node-graceful-fs_4.2.10.orig.tar.gz | 59.2 KiB | 71ba4cce6ed89ac18b91ca99649c4b0ab43b7538607a9fbdb562e565d6427665 |
node-graceful-fs_4.2.10-1.debian.tar.xz | 4.4 KiB | 88fc0d95fbece095afd7ee95f194c00d63697970a451c74688716fac5f97f476 |
Available diffs
- diff from 4.2.4+repack-1 to 4.2.10-1 (32.5 KiB)
No changes file available.
Binary packages built by this source
- node-graceful-fs: drop-in replacement improving the Node.js fs module
node-graceful-fs module normalizes behavior across different platforms
and environments, and makes filesystem access more resilient to errors:
* queues up open and readdir calls, and retries them once something
closes if there is an EMFILE error from too many file descriptors.
* fixes lchmod for Node versions prior to 0.6.2
* implements fs.lutimes if possible. Otherwise it becomes a noop.
* ignores EINVAL and EPERM errors in chown, fchown or lchown if the
user isn't root.
* makes lchmod and lchown become noops, if not available.
* retries reading a file if read results in EAGAIN error.
.
Node.js is an event-based server-side javascript engine.