🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

atocha

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

atocha

Tiny exec() with Promises and trim()

latest
Source
npmnpm
Version
2.0.0
Version published
Maintainers
1
Created
Source

Atocha npm install atocha

Run a command in your terminal. Tiny exec() with promises and trim() for Node.js:

import cmd from 'atocha';

(async () => {
  // Any basic command will work
  console.log(await cmd('ls'));

  // Using a better Promise interface, see the lib `swear`
  console.log(await cmd('ls').split('\n'));

  // Can pipe commands as normal
  console.log(await cmd('sort record.txt | uniq'));
})();

Terminal Atocha; Madrid's train station.

Better exec()

  • Automatic .trim() so you don't have to do it manually.
  • Higher max buffer. 10 MB instead of 200 KB.
  • Await/Async Promise interface works as you know and love.
  • Better error handling. stderr will reject the promise with an error instance. Can be caught as normal with .catch() or try {} catch (error) {}.
  • Advanced Promise interface so you can concatenate operations easily.
  • Full commands, commands with piping, etc. Note: Do not pass unsanitized input since there's no filtering going on. See execa for that.

Getting started

Install it in your project:

npm install atocha

Import it to be able to use it in your code:

const cmd = require('atocha');  // Old school
import cmd from 'atocha';       // New wave

Examples

Parsing this package's information:

const out = await cmd(`npm info atocha --json`);
const info = JSON.parse(out);
console.log(info.name + '@' + info.version);
// atocha@1.1.1

Keywords

exec

FAQs

Package last updated on 22 Jan 2023

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