sh-exec

<p align="center"> <img src="./logo.png" width="128" /> </p> <p align="center"> <a href="https://www.npmjs.com/package/sh-exec"> <img src="https://img.shields.io/npm/v/sh-exec.svg?style=flat-square&" /> </a> <a href="https://travis-ci.org/rwu8

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
sh-exec
9412.1.05 years ago6 years agoMinified + gzip package size for sh-exec in KB

Readme

<img src="https://img.shields.io/npm/v/sh-exec.svg?style=flat-square&" />
<img src="https://img.shields.io/travis/rwu823/sh-exec.svg?style=flat-square&" />
<img src="https://img.shields.io/codecov/c/github/rwu823/sh-exec/master.svg?style=flat-square&" />

Why sh-exec?

Use Template literals write shell script made happy ❤️.

Installation

$ yarn add sh-exec

Examples

import sh from 'sh-exec'
import { version } from '../package.json'

sh`
echo "sh-exec is awesome."
`

sh`
git init
git add .
git commit -m '${version}'
`

Quiet

If you don't like to see the command output or because some security issue.
It's helpful in CI.
import sh from 'sh-exec'

sh.quiet`echo "You can't see"`

Promise Based

sh`
  curl https://a-url.com
`
  .then(stdout => {
    console.log('done')
  })
  .catch(err => {
    console.error(err)
  })

// or
;(async () => {
  const stdout = await sh`
    curl https://a-url.com
  `
})()