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

Changelog

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

  * Team upload
  * Declare compliance with policy 4.5.0
  * Increase timeout (may fix debci)

 -- Xavier Guimard <email address hidden>  Wed, 05 Feb 2020 07:24:06 +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-5.dsc 2.0 KiB 9f202ac0f9fefb5d17a772069b972efc675b39d8e6a8f66b04994c5e769f789e
node-tmp_0.1.0+dfsg.orig.tar.xz 16.7 KiB 697339211f600cbdcf8b061760b3d657d36aa8fb142c1744920047b7045ad82b
node-tmp_0.1.0+dfsg-5.debian.tar.xz 4.2 KiB 43c0e7dad67baeba44f921a6a3bdee03271d22162609da88e91594640861dfac

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.