Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 614 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 614 Bytes

temp thunk wrappers for co

Build Status

Installation

$ npm install co-temp

Usage

var temp = require('co-temp').track();

co(function *() {
    var info = yield temp.open('file');
    console.log(info.path);
    var dirPath = yield temp.mkdir('mydir');
    console.log(info.path);

    yield temp.cleanup(); // only if you use track()
});

See temp documentation for more info.