zx

一个编写更好脚本的工具。「A tool for writing better scripts」

Github星跟蹤圖

zx

#!/usr/bin/env zx

await $`cat package.json | grep name`

let branch = await $`git branch --show-current`
await $`dep deploy --branch=${branch}`

await Promise.all([
  $`sleep 1; echo 1`,
  $`sleep 2; echo 2`,
  $`sleep 3; echo 3`,
])

let name = 'foo bar'
await $`mkdir /tmp/${name}`

Bash 很好,但是在编写脚本时,人们通常会选择一种更方便的编程语言。JavaScript 是一个完美的选择,但是标准的 Node.js 库在使用之前需要额外的麻烦。zx 包为子进程提供了有用的包装器,转义参数并给出合理的默认值。

安装

npm i -g zx

文档

将你的脚本写在以 .mjs 为扩展名的文件中,以便能够在顶层使用 await。如果你喜欢使用 .js 扩展名,可以用类似 void async function () {...}() 的方式来包装你的脚本。

在你的 zx 脚本的开头添加以下 shebang。

#!/usr/bin/env zx

现在你就可以像这样运行你的脚本了。

chmod +x ./script.mjs
./script.mjs

或者通过 zx 的可执行程序。

zx ./script.mjs

当通过可执行文件或 Shebang 使用 zx 时,所有的功能($、cd、fetch 等)都可以直接使用,不需要任何导入。




主要指標

概覽
名稱與所有者google/zx
主編程語言JavaScript
編程語言JavaScript (語言數: 3)
平台Linux, Mac, Windows
許可證Apache License 2.0
所有者活动
創建於2021-05-05 05:50:01
推送於2025-04-20 07:13:20
最后一次提交
發布數89
最新版本名稱8.5.3 (發布於 )
第一版名稱1.7.0 (發布於 )
用户参与
星數44k
關注者數158
派生數1.1k
提交數846
已啟用問題?
問題數473
打開的問題數10
拉請求數451
打開的拉請求數0
關閉的拉請求數139
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?

🐚 zx

#!/usr/bin/env zx

await $`cat package.json | grep name`

let branch = await $`git branch --show-current`
await $`dep deploy --branch=${branch}`

await Promise.all([
  $`sleep 1; echo 1`,
  $`sleep 2; echo 2`,
  $`sleep 3; echo 3`,
])

let name = 'foo bar'
await $`mkdir /tmp/${name}`

Bash is great, but when it comes to writing scripts,
people usually choose a more convenient programming language.
JavaScript is a perfect choice, but standard Node.js library
requires additional hassle before using. The zx package provides
useful wrappers around child_process, escapes arguments and
gives sensible defaults.

Install

npm i -g zx

Documentation

Write your scripts in a file with .mjs extension in order to
be able to use await on top level. If you prefer the .js extension,
wrap your scripts in something like void async function () {...}().

Add the following shebang to the beginning of your zx scripts:

#!/usr/bin/env zx

Now you will be able to run your script like so:

chmod +x ./script.mjs
./script.mjs

Or via the zx executable:

zx ./script.mjs

When using zx via the executable or a shebang, all of the functions
($, cd, fetch, etc) are available straight away without any imports.

$`command`

Executes a given string using the exec function from the
child_process package and returns ProcessPromise<ProcessOutput>.

let count = parseInt(await $`ls -1 | wc -l`)
console.log(`Files count: ${count}`)

For example, to upload files in parallel:

let hosts = [...]
await Promise.all(hosts.map(host =>
  $`rsync -azP ./src ${host}:/var/www`  
))

If the executed program returns a non-zero exit code,
ProcessOutput will be thrown.

try {
  await $`exit 1`
} catch (p) {
  console.log(`Exit code: ${p.exitCode}`)
  console.log(`Error: ${p.stderr}`)
}

ProcessPromise

class ProcessPromise<T> extends Promise<T> {
  readonly stdin: Writable
  readonly stdout: Readable
  readonly stderr: Readable
  pipe(dest): ProcessPromise<T>
}

The pipe() method can be used to redirect stdout:

await $`cat file.txt`.pipe(process.stdout)

Read more about pipelines.

ProcessOutput

class ProcessOutput {
  readonly exitCode: number
  readonly stdout: string
  readonly stderr: string
  toString(): string
}

cd()

Changes the current working directory.

cd('/tmp')
await $`pwd` // outputs /tmp

fetch()

A wrapper around the node-fetch package.

let resp = await fetch('http://wttr.in')
if (resp.ok) {
  console.log(await resp.text())
}

question()

A wrapper around the readline package.

Usage:

let bear = await question('What kind of bear is best? ')
let token = await question('Choose env variable: ', {
  choices: Object.keys(process.env)
})

In second argument, array of choices for Tab autocompletion can be specified.

function question(query?: string, options?: QuestionOptions): Promise<string>
type QuestionOptions = { choices: string[] }

sleep()

A wrapper around the setTimeout function.

function sleep(ms: number): Promise<void>

Usage:

await sleep(1000)

chalk package

The chalk package is available without
importing inside scripts.

console.log(chalk.blue('Hello world!'))

fs package

The fs package is available without importing
inside scripts. It is asynchronous by default.

let content = await fs.readFile('./package.json')

os package

The os package is available without importing
inside scripts.

await $`cd ${os.homedir()} && mkdir example`

$.shell

Specifies what shell is used. Default is which bash.

$.shell = '/usr/bin/bash'

$.prefix

Specifies the command what will be prefixed to all commands run.

Default is set -euo pipefail;.

$.quote

Specifies a function what will be used for escaping special characters during
command substitution.

Default is the shq package.

$.verbose

Specifies verbosity. Default is true.

In verbose mode, the zx prints all executed commands alongside with their
outputs.

__filename & __dirname

In ESM modules, Node.js does not provide
__filename and __dirname globals. As such globals are really handy in scripts,
zx provides these for use in .mjs files (when using the zx executable).

require()

In ESM
modules, the require() function is not defined.
The zx provides require() function, so it can be used with imports in .mjs
files (when using zx executable).

let {version} = require('./package.json')

Passing env variables

process.env.FOO = 'bar'
await $`echo $FOO`

Passing array of values

If array of values passed as argument to $, items of the array will be escaped
individually and concatenated via space.

Example:

let files = [...]
await $`tar cz ${files}`

Importing from other scripts

It is possible to make use of $ and other functions via explicit imports:

#!/usr/bin/env node
import {$} from 'zx'
await $`date`

Scripts without extensions

If script does not have a file extension (like .git/hooks/pre-commit), zx
assumes what it is a ESM
module.

Markdown scripts

The zx can execute scripts written in markdown
(examples/index.md):

zx examples/index.md

Executing remote scripts

If the argument to the zx executable starts with https://, the file will be
downloaded and executed.

zx https://medv.io/example-script.mjs

License

Apache-2.0

Disclaimer: This is not an officially supported Google product.