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

Changelog

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

  * Team upload

  [ Debian Janitor ]
  * Remove obsolete field Name from debian/upstream/metadata (already
    present in machine-readable debian/copyright).

  [ Xavier Guimard ]
  * Disable 2 tests failng with Node.js ≥ 12

 -- Xavier Guimard <email address hidden>  Mon, 20 Jan 2020 13:11:23 +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-3.dsc 2.0 KiB 90dfc8cd6bd9ea4b88a5192fd3d4080f3931522e744b0e4dbee42bbf52eb4c87
node-tmp_0.1.0+dfsg.orig.tar.xz 16.7 KiB 697339211f600cbdcf8b061760b3d657d36aa8fb142c1744920047b7045ad82b
node-tmp_0.1.0+dfsg-3.debian.tar.xz 4.0 KiB 19bc310458c9430c78887993654b657776b9a62d4ba4fb5b741e5342d790aa7f

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.