# @taluoo/tmpfile

Latest version **1.0.1** (published 2017-10-11) · ISC license · 0 weekly downloads

## Install

```sh
npm install @taluoo/tmpfile
pnpm add @taluoo/tmpfile
yarn add @taluoo/tmpfile
bun add @taluoo/tmpfile
```

## 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.0.1 |
| Published | 2017-10-11 |
| First published | 2017-10-10 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | taluoo |
| Maintainers | taluoo |

## Links

- npm: https://www.npmjs.com/package/@taluoo/tmpfile
- Repository: https://github.com/taluoo/tmpfile
- Homepage: https://github.com/taluoo/tmpfile#readme
- Issues: https://github.com/taluoo/tmpfile/issues
- npm.io page: https://npm.io/package/@taluoo/tmpfile

## Recent versions

- 1.0.1 (latest) — 2017-10-11
- 1.0.0 — 2017-10-10

## README

Utils to make tmpfile sync or async

## THIS PROJECT IS 【INACTIVE】
This project is not maintained anymore. Please use alternative.

## Install

```
npm install @taluoo/tmpfile --save
```

## Usage

```
const {makeTmpFile, makeTmpFileSync, deleteTmpFile} = require('@taluoo/tmpfile');

let tmpfile1 = makeTmpFileSync();
console.log(tmpfile1);

async function test() {
    let tmpFile2 = await makeTmpFile();
    console.log(tmpFile2);
}

test();

deleteTmpFile(tmpfile1);
```

## TODO

-

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