node-graceful-fs 4.2.3-1 source package in Ubuntu

Changelog

node-graceful-fs (4.2.3-1) unstable; urgency=medium

  * New upstream release.
  * Install files in /usr/share following new policy.
  * Bump std-vers to 4.4.1.

 -- Julien Puydt <email address hidden>  Mon, 28 Oct 2019 08:29:34 +0100

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-graceful-fs_4.2.3-1.dsc 2.1 KiB 8495509995a8261cdef8a1afbf5758e24a7ddbdd8d5bf2f00c73fff657575950
node-graceful-fs_4.2.3.orig.tar.gz 34.5 KiB d7c642fcaa55494e2c3a3e3e0abc41e35332a9f53f6b93b93bbcb6afbd13f74a
node-graceful-fs_4.2.3-1.debian.tar.xz 3.4 KiB 293dc68c236441be235fbafb56ff97a6934774ef400e86d80c126b9e2375af7b

Available diffs

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.