1.0.1 • Published 4 years ago

gettemporaryfilepath v1.0.1

Weekly downloads
10,680
License
BSD
Repository
github
Last release
4 years ago

node-gettemporaryfilepath

Generate file names for temporary files:

var getTemporaryFilePath = require('gettemporaryfilepath');

getTemporaryFilePath(); // "/tmp/112116-2662-18u8bl8"
getTemporaryFilePath(); // "/tmp/112116-2662-1inp07r"

Creating and cleaning up the temporary files is your own responsibility.

Custom suffixes and prefixes are supported using the same syntax as node-temp (from which most of the code was taken):

getTemporaryFilePath({suffix: '.png'}); // "/tmp/112116-2662-125a83d.png"
getTemporaryFilePath({prefix: 'foo-'}); // "/tmp/foo-112116-2662-avhu28"

Installation

Make sure you have node.js and npm installed, then run:

npm install gettemporaryfilepath

License

Based on node-temp and licensed under the 3-clause BSD license -- see the LICENSE file for details.