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

Changelog

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

  * Team upload
  * Bump debhelper compatibility level to 12
  * Declare compliance with policy 4.4.1
  * Add "Rules-Requires-Root: no"
  * New upstream version 0.1.0+dfsg
  * Update test (use mocha)
  * Update dependencies: replace node-os-tmpdir by node-rimraf

 -- Xavier Guimard <email address hidden>  Tue, 03 Dec 2019 06:32:43 +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-1.dsc 2.0 KiB 7b9270a8f2a6deb0c2bf7dfc991e110878359cd86de8d16c0f0b4906f486c499
node-tmp_0.1.0+dfsg.orig.tar.xz 16.7 KiB 697339211f600cbdcf8b061760b3d657d36aa8fb142c1744920047b7045ad82b
node-tmp_0.1.0+dfsg-1.debian.tar.xz 3.3 KiB dcbf4caadd5ae130527e8f07b43addd94b48b3cc1c36476c27664e654df6b98f

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.