1.0.1 • Published 9 years ago

next-promise v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

NPM version Build Status Dependency Status

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