node-tmp 0.2.1+dfsg-2 source package in Ubuntu

Changelog

node-tmp (0.2.1+dfsg-2) unstable; urgency=medium

  * Team upload
  * Modernize debian/watch
  * Fix GitHub tags regex
  * Declare compliance with policy 4.6.0

 -- Yadd <email address hidden>  Wed, 15 Sep 2021 10:52:08 +0200

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

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-tmp_0.2.1+dfsg-2.dsc 2.0 KiB eb27867dc5aaa4f3acbc9dabdc54289b109fd576e6ae9efc04b78588ddb8c879
node-tmp_0.2.1+dfsg.orig.tar.xz 20.1 KiB e64eeedd217c9afcc250eea8089a56e58d46fec6aeb947e42adae45e90b6fd5f
node-tmp_0.2.1+dfsg-2.debian.tar.xz 4.0 KiB 35da63c59d8d5ba666337e50ed8885ab43a25b6cb43ce46739a52071757ee4f1

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.