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

async-exec

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-exec

Promise based exec

  • 1.0.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
473
Maintainers
1
Weekly downloads
 
Created
Source

Async-Exec

TypeScript

Have you ever wanted to exec things asyncly? Now you can!

Usage

npm install -S async-exec

Then in your code

import exec from 'async-exec';

await exec(`osascript -e "set volume ${scaledVolume}"`);
const tsFiles = await exec(`find . -name "*.ts"`);

For tee-style logging, where the output is both sent to stdout as it arrives, and captured in the return value, set the second argument to true.

exec('ls', true);

Contributing

Go ahead and send me PRs. I love them. Especially if they contain tests and don't check in generated files.

Not sure how to fix it yourself? Submit an issue and we'll get it done eventually!

Publishing

Mostly for my own recollection, publishing goes like this.

<commit changes>
git push origin master
npm version <major|minor|patch>
npm publish

Keywords

FAQs

Package last updated on 14 Jun 2017

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