tempfile
Version:
Get a random temporary file path
50 lines (30 loc) • 991 B
Markdown
> Get a random temporary file path
**Checkout out [`tempy`](https://github.com/sindresorhus/tempy) which is a better take on this module.**
```sh
npm install tempfile
```
```js
import tempfile from 'tempfile';
tempfile();
//=> '/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/6271e235-13b9-4138-8b9b-ee2f26c09ce3'
```
Type: `object`
Type: `string`
A file extension to append to the path.
```js
import tempfile from 'tempfile';
tempfile();
//=> '/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/6271e235-13b9-4138-8b9b-ee2f26c09ce3'
tempfile({extension: 'png'});
//=> '/var/folders/3x/jf5977fn79jbglr7rk0tq4d00000gn/T/4049f192-43e7-43b2-98d9-094e6760861b.png'
```
- [tempy](https://github.com/sindresorhus/tempy) - Get a random temporary file or directory path
- [temp-write](https://github.com/sindresorhus/temp-write) - Write string/buffer/stream to a random temp file