vadimdemedes / tempdir

Create a temporary directory

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tempdir Build Status

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

About

Create a temporary directory

License:MIT License


Languages

Language:JavaScript 100.0%