Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

next-promise

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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)

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-28.57%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

FAQs

Package last updated on 16 Feb 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc