Temporary file and directory creator
A simple temporary file and directory creator for node.js.
This is a widely used library to create temporary files and directories in a node.js environment.
Tmp offers both an asynchronous and a synchronous API. For all API calls, 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.
npm install tmp
Simple temporary file creation, the file will be closed and unlinked on process exit.
var tmp = require'tmp'; tmpfile if err throw err; console.log"File: " path; console.log"Filedescriptor: " fd; // If we don't need the file anymore we could manually call the cleanupCallback // But that is not necessary if we didn't pass the keep option because the library // will clean after itself. cleanupCallback;;
A synchronous version of the above.
var tmp = require'tmp'; var tmpobj = tmpfileSync;console.log"File: " tmpobjname;console.log"Filedescriptor: " tmpobjfd; // If we don't need the file anymore we could manually call the removeCallback // But that is not necessary if we didn't pass the keep option because the library // will clean after itself. tmpobjremoveCallback;
Note that this might throw an exception if either the maximum limit of retries for creating a temporary name fails, or, in case that you do not have the permission to write to the directory where the temporary file should be created in.
Simple temporary directory creation, it will be removed on process exit.
If the directory still contains items on process exit, then it won't be removed.
var tmp = require'tmp'; tmpdir if err throw err; console.log"Dir: " path; // Manual cleanup cleanupCallback;;
If you want to cleanup the directory even when there are entries in it, then
you can pass the unsafeCleanup option when creating it.
A synchronous version of the above.
var tmp = require'tmp'; var tmpobj = tmpdirSync;console.log"Dir: " tmpobjname;// Manual cleanup tmpobjremoveCallback;
Note that this might throw an exception if either the maximum limit of retries for creating a temporary name fails, or, in case that you do not have the permission to write to the directory where the temporary directory should be created in.
It is possible with this library to generate a unique filename in the specified directory.
var tmp = require'tmp'; tmptmpName if err throw err; console.log"Created temporary filename: " path;;
A synchronous version of the above.
var tmp = require'tmp'; var name = tmptmpNameSync;console.log"Created temporary filename: " name;
Creates a file with mode 0644, prefix will be prefix- and postfix will be .txt.
var tmp = require'tmp'; tmpfile mode: 0644 prefix: 'prefix-' postfix: '.txt' if err throw err; console.log"File: " path; console.log"Filedescriptor: " fd;;
A synchronous version of the above.
var tmp = require'tmp'; var tmpobj = tmpfileSync mode: 0644 prefix: 'prefix-' postfix: '.txt' ;console.log"File: " tmpobjname;console.log"Filedescriptor: " tmpobjfd;
Creates a directory with mode 0755, prefix will be myTmpDir_.
var tmp = require'tmp'; tmpdir mode: 0750 prefix: 'myTmpDir_' if err throw err; console.log"Dir: " path;;
Again, a synchronous version of the above.
var tmp = require'tmp'; var tmpobj = tmpdirSync mode: 0750 prefix: 'myTmpDir_' ;console.log"Dir: " tmpobjname;
Creates a new temporary directory with mode 0700 and filename like /tmp/tmp-nk2J1u.
var tmp = require'tmp'; tmpdir template: '/tmp/tmp-XXXXXX' if err throw err; console.log"Dir: " path;;
This will behave similarly to the asynchronous version.
var tmp = require'tmp'; var tmpobj = tmpdirSync template: '/tmp/tmp-XXXXXX' ;console.log"Dir: " tmpobjname;
The tmpName() function accepts the prefix, postfix, dir, etc. parameters also:
var tmp = require'tmp'; tmptmpName template: '/tmp/tmp-XXXXXX' if err throw err; console.log"Created temporary filename: " path;;
The tmpNameSync() function works similarly to tmpName().
var tmp = require'tmp';var tmpname = tmptmpNameSync template: '/tmp/tmp-XXXXXX' ;console.log"Created temporary filename: " tmpname;
One may want to cleanup the temporary files even when an uncaught exception
occurs. To enforce this, you can call the setGracefulCleanup() method:
var tmp = require'tmp'; tmpsetGracefulCleanup;
All options are optional :)
mode: the file mode to create with, it fallbacks to 0600 on file creation and 0700 on directory creationprefix: the optional prefix, fallbacks to tmp- if not providedpostfix: the optional postfix, fallbacks to .tmp on file creationtemplate: mkstemps like filename template, no defaultdir: the optional temporary directory, fallbacks to system default (guesses from environment)tries: how many times should the function try to get a unique filename before giving up, default 3keep: signals that the temporary file or directory should not be deleted on exit, default is false, means delete
cleanupCallback function manually.unsafeCleanup: recursively removes the created temporary directory, even when it's not empty. default is false