node-tmp 0.1.0+dfsg-4 source package in Ubuntu

Changelog

node-tmp (0.1.0+dfsg-4) unstable; urgency=medium

  * Team upload
  * Import upstream fix for Node.js ≥ 12 and enable all tests

 -- Xavier Guimard <email address hidden>  Fri, 24 Jan 2020 06:37:02 +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-tmp_0.1.0+dfsg-4.dsc 2.0 KiB e3b33a1a9748f12492804500eadc1b3916fa6b64dbb0273a06ed36ae1b747025
node-tmp_0.1.0+dfsg.orig.tar.xz 16.7 KiB 697339211f600cbdcf8b061760b3d657d36aa8fb142c1744920047b7045ad82b
node-tmp_0.1.0+dfsg-4.debian.tar.xz 4.2 KiB eb631e99576d61ad6bb36bc3549d4595220599b65e80b346bb95b136c9588cb8

Available diffs

No changes file available.

Binary packages built by this source

node-tmp: Temporary file and directory creator for Node.js

 The main difference between node-temp and node-tmp is that node-tmp more
 aggressively checks for the existence of the newly created temporary file
 and creates the new file with O_EXCL instead of simple O_CREAT | O_RDRW,
 so it is safer.
 .
 The API is slightly different as well, Tmp does not yet provide
 synchronous calls and all the parameters are optional.
 .
 Tmp uses crypto for determining random file names, or, when using templates,
 a six letter random identifier. And just in case that you do not have that
 much entropy left on your system, Tmp will fall back to pseudo random numbers.
 .
 You can set whether you want to remove the temporary file on process exit or
 not, and the destination directory can also be set.
 .
 Node.js is an event-based server-side JavaScript engine.