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

atropa-cmd

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

atropa-cmd

Utilities for executing commandlines.

  • 0.1.3-2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

#Atropa CMD Utilities for executing commandlines

This package provides a few utilies for executing commandline programs. It provides an asynchronous command runner, an asynchronous command register, and a synchronous command register. The idea is that sometimes we need to wait for commands to return, sometimes we do not. By grouping the commands into sets of synchronous and asynchronous it's easier to manage process flow. Let the commands run wild doing their own thing if they don't depend on eachother. When they're finished, run another set of commands that uses the output of the first set. The point is to block when you have to, go async when you can, and be able to control the timing of it all without tripping over yourself.

It's easy.

  • Create an instance of an async or sync register.
  • Use the addCommand method of the register to add commands to it.
  • Set listeners if you need notifications. Set callbacks if you need stdout.
  • Call the registers process function to process the queue of functions.
var cmd, syncy;

cmd = require('atropa-cmd');

function logStdout(err, stdout, stderr) {
    console.log(stdout);
}

syncy = new cmd.commandRegister.Synchronous('Syncy');

syncy.on('command executing', function(e) {
    console.log('command executing');
    console.dir(e);
    console.log();
});

syncy.addCommand('dir', 'C:\\Users\\kastor\\Desktop', logStdout);
syncy.addCommand('tree /A', 'C:\\Users\\kastor\\Desktop', logStdout);
syncy.process();

For more details see the example script, or the comments in the code. The script is really small, it's likely easiest just to read it.

Keywords

FAQs

Package last updated on 17 May 2013

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