2.0.0 • Published 8 years ago
tempdir v2.0.0
tempdir
Create a temporary directory.
Installation
$ npm install --save tempdir
Usage
const tempdir = require('tempdir');
await tempdir();
//=> /tmp/x/y/z
tempdir.sync();
//=> /tmp/x/y/w
API
tempdir()
Returns a Promise
, which resolves to a directory path.
tempdir.sync()
Synchronous version of tempdir()
.
License
MIT © Vadim Demedes