1.0.1 • Published 7 years ago

tmpz v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

Tmpz Build Status Coverage Status Standard - JavaScript Style Guide Greenkeeper badge

Copy a file or directory to OS temporary directory with a random name. Also you can remove it later.

Prerequisites

NodeJS v4.0 or greater.

Install

npm install tmpz --save-dev

Usage

const tmpz = require('tmpz')

try {
  const dest = tmpz.copy('./my_directory')
  console.log(dest)
  // > /tmp/393a6d0851bb6c10214f92bbaa9c833d

  // Removing the temp dir in 7 seconds
  setTimeout(() => tmpz.remove(dest), 7000)
} catch (err) {
  console.error(err)
}

License

MIT license

© 2017 José Luis Quintana