next-promise
v1.0.1
Published
Run a promised func sequencing by following order of params. This is inspired from [Q promise로 차례대로 비동기작업 실행하기 :: Outsider's Dev Story](http://goo.gl/Je3d8n)
Downloads
24
Maintainers
Readme
Run a promised func sequencing by following order of params. This is inspired from Q promise로 차례대로 비동기작업 실행하기 :: Outsider's Dev Story
Install
$ npm install --save next-promise
Usage
var next = require('next-promise');
var exec = require('exec-then');
var cmds = [
'ls',
'pwd',
'echo $PATH'
];
next(cmds, exec, function(res) {
console.log(res.stdout);
}).then(function() {
console.log('done');
});
License
MIT © ragingwind