Socket
Socket
Sign inDemoInstall

bashx

Package Overview
Dependencies
2
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bashx

executing bash scripts in js/ts


Version published
Weekly downloads
1
decreased by-75%
Maintainers
1
Install size
27.9 kB
Created
Weekly downloads
 

Readme

Source

BashX

Execute commands in JS/TS. A warp of child_process.spawn, which allows you process command return values in JS/TS.

I love bash,but am not good at it

Quick start

Install

npm i bashx

Usage

import { x } from 'bashx'

void (async()=>{
    const output = await x`echo 'this is awesome'`
    console.log(output)
    // { code: 0, stdout: 'hello\n', stderr: '' }

    const url = https://example.com/example.json
    const ret = await x`curl -s ${url}`
    console.log(JSON.parse(ret.stdout))
    // { example:'json' }
})().catch(console.log)

Keywords

FAQs

Last updated on 15 Jul 2021

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc