1.0.2 • Published 8 years ago

then-tmp v1.0.2

Weekly downloads
2,703
License
MIT
Repository
github
Last release
8 years ago

then-tmp

Promised version of the node.js tmp module.

Installation

Download node at nodejs.org and install it, if you haven't already.

npm install then-tmp --save

Usage

/* eslint-disable no-unused-vars */
/* eslint-disable import/no-extraneous-dependencies */
import tmp from 'then-tmp';

tmp.file().then(({path, fd, cleanupCallback}) => {
});

tmp.dir().then(({path, cleanupCallback}) => {
});

tmp.tmpName().then(path => {
});

// *Sync-methods are aliases to the tmp module
const {name: fileName} = tmp.fileSync();
const {name: dirName} = tmp.dirSync();
const tmpName = tmp.tmpNameSync();

Tests

npm install
npm test

Dependencies

  • promisify-function: Turn a callback-style function into a function that returns a promise
  • tmp: Temporary file and directory creator

Dev Dependencies

License

MIT

Generated by package-json-to-readme