You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Easily create a temporary directory without having to worry about cleanup.
importwithTmpdirfrom"with-tmp";awaitwithTmpdir("my-tmp-dir",dir=>{constpath=path.join(dir,"my-file");fs.writeFileSync(path,"content");});// tmpdir is cleaned up
Do tasks from within the temporary directory without having to worry about restoring your environment.