raszi / node-tmp

Temporary file and directory creator for node.js
MIT License
736 stars 92 forks source link

Temp file with an extension #201

Closed ktalebian closed 4 years ago

ktalebian commented 4 years ago

How can I create a temp file with an extension?

jamesmbourne commented 4 years ago

You can pass a postfix option e.g.

const tmpobj = tmp.fileSync({ postfix: ".html" });
silkentrance commented 4 years ago

Duplicate of #200