node-tmp 0.0.25-1 source package in Ubuntu

Changelog

node-tmp (0.0.25-1) unstable; urgency=medium


  * New upstream release.
  * Update copyright years in copyright file.

 -- Bas Couwenberg <email address hidden>  Tue, 10 Mar 2015 19:47:11 +0100

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Wily: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-tmp_0.0.25-1.dsc 1.9 KiB 4ed55e69d971d43ba4c524c62fe9178f8420bde7f899e8fbdd68afba2c957e10
node-tmp_0.0.25.orig.tar.gz 9.8 KiB cb7e887b94adb0813fb2d7e898bcfeb0c33d4edeeae020b195c4c0c319eacc97
node-tmp_0.0.25-1.debian.tar.xz 2.7 KiB 30106242c95defc4b9b362f429c7248971dab42478b5e731bb33c917641ab393

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.