# temporary

> The lord of tmp.

Latest version **1.1.0** (published 2020-05-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install temporary
pnpm add temporary
yarn add temporary
bun add temporary
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2020-05-13 |
| First published | 2012-01-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 21.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 69 |
| Maintainers | vesln, willscott |
| Keywords | tmp, temp, tempfile, tempdirectory |

## Links

- npm: https://www.npmjs.com/package/temporary
- Repository: https://github.com/vesln/temporary
- Issues: https://github.com/vesln/temporary/issues
- npm.io page: https://npm.io/package/temporary

## Recent versions

- 1.1.0 (latest) — 2020-05-13
- 1.0.1 — 2019-05-24
- 1.0.0 — 2019-01-26
- 0.0.8 — 2014-01-05
- 0.0.7 — 2013-09-25
- 0.0.6 — 2013-09-13
- 0.0.5 — 2012-11-12
- 0.0.4 — 2012-06-25
- 0.0.3 — 2012-06-25
- 0.0.2 — 2012-01-02
- 0.0.1 — 2012-01-01

## README

[![Build Status](https://secure.travis-ci.org/vesln/temporary.png)](http://travis-ci.org/vesln/temporary)

# temporary - The lord of tmp.

## Intro

Temporary provides an easy way to create temporary files and directories.
It will create a temporary file/directory with a unique name.

## Features

- Generates unique name.
- Auto-discovers tmp dir.

## Installation

	$ npm install temporary

## Usage

	var tmp = require('temporary');
	var file = new tmp.File();
	var dir = new tmp.Dir();

	console.log(file.path); // path.
	console.log(dir.path); // path.

	file.unlink();
	dir.rmdir();

### Custom path

If you want to manually specify the directory name, you can do so by setting the `generator` option to `false`.

```js
var tmp = require('temporary');

var dir = new tmp.Dir('foobar', { generator: false });

console.log(dir.path) // prints 'foobar'
```

### Custom generator

Generators allow you to specify how the directory or file names get generated.

```js
var tmp = require('temporary');

var dir = new tmp.Dir('foobar', { generator: function() {} });
```

## Methods

### File

- File.readFile
- File.readFileSync
- File.writeFile
- File.writeFileSync
- File.open
- File.openSync
- File.close
- File.closeSync
- File.unlink
- File.unlinkSync

### Dir

- Dir.rmdir
- Dir.rmdirSync

## Tests

	$ make test

## Contribution

Bug fixes and features are welcomed.

Current maintainer: @willscott

## License

MIT License

Copyright (C) 2012 Veselin Todorov

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

---
_Source: https://npm.io/package/temporary · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
