Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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()

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

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

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

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