next-promise

Run a promised func sequencing by following order of params. This is inspired from [Q promise로 차례대로 비동기작업 실행하기 :: Outsider's Dev Story](http://goo.gl/Je3d8n)

Usage no npm install needed!

<script type="module">
  import nextPromise from 'https://cdn.skypack.dev/next-promise';
</script>

README

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