谷歌开源项目zx,在node中bash

简介: 谷歌开源项目zx,在node中bash

🐚 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包为child_process提供了有用的包装器,转义参数并给出了合理的默认值。

1. 安装

npm i -g zx
Requirement: Node version >= 16.0.0

用于在远程主机上运行命令, 请看webpod.

2. 文档

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

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

#!/usr/bin/env zx

现在你可以像这样运行你的脚本:

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

或者通过zx可执行文件:

zx ./script.mjs

所有函数($,cd, fetch等)都可以直接使用,无需任何导入。

或者显式地导入全局变量(以便在VS Code中更好地自动补全)。

import 'zx/globals'

$command

使用spawn func执行给定命令并返回ProcessPromise。

所有东西都经过${…}将自动转义并引用。

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

没有必要添加额外的引号。阅读更多关于它的引用。

There is no need to add extra quotes. Read more about it in quotes.

如果需要,你可以传递一个参数数组:

You can pass an array of arguments if needed:

let flags = [
  '--oneline',
  '--decorate',
  '--color',
]
await $`git log ${flags}`

如果执行的程序返回非零退出代码,则抛出ProcessOutput

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 extends Promise<ProcessOutput> {
  stdin: Writable
  stdout: Readable
  stderr: Readable
  exitCode: Promise<number>

  pipe(dest): ProcessPromise

  kill(): Promise<void>

  nothrow(): this

  quiet(): this
}

ProcessOutput

class ProcessOutput {
  readonly stdout: string
  readonly stderr: string
  readonly signal: string
  readonly exitCode: number

  toString(): string // Combined stdout & stderr.
}

流程的输出按原样捕获。通常,程序在最后打印一个新行\n。如果ProcessOutput被用作其他$process的参数,zx将使用stdout并修剪新行。

let date = await $`date`
await $`echo Current date is ${date}.`
Functions
cd()

更改当前工作目录。

cd('/tmp')
await $`pwd` // => /tmp
fetch()

A wrapper around the node-fetch package.

let resp = await fetch('https://medv.io')
question()

readline包的包装器。

A wrapper around the readline package.

let bear = await question('What kind of bear is best? ')
sleep()
A wrapper around the setTimeout function.

await sleep(1000)
echo()

A console.log() alternative which can take ProcessOutput.

let branch = await $`git branch --show-current`

echo`Current branch is ${branch}.`
// or
echo('Current branch is', branch)
stdin()
Returns the stdin as a string.

let content = JSON.parse(await stdin())
within()

Creates a new async context.

await $`pwd` // => /home/path

within(async () => {
  cd('/tmp')

  setTimeout(async () => {
    await $`pwd` // => /tmp
  }, 1000)
})

await $`pwd` // => /home/path
let version = await within(async () => {
  $.prefix += 'export NVM_DIR=$HOME/.nvm; source $NVM_DIR/nvm.sh; '
  await $`nvm use 16`
  return $`node -v`
})
retry()

重试回调几次。将在第一次尝试成功后返回,或在指定尝试计数后抛出。

Retries a callback for a few times. Will return after the first successful attempt, or will throw after specifies attempts count.

let p = await retry(10, () => $`curl https://medv.io`)

// With a specified delay between attempts.
let p = await retry(20, '1s', () => $`curl https://medv.io`)

// With an exponential backoff.
let p = await retry(30, expBackoff(), () => $`curl https://medv.io`)
spinner()

Starts a simple CLI spinner.

await spinner(() => $`long-running command`)

// With a message.
await spinner('working...', () => $`sleep 99`)

Packages

以下包无需导入内部脚本即可使用。

  • chalk package
    The chalk package.
console.log(chalk.blue('Hello world!'))
  • fs package
    The fs-extra package.
let {version} = await fs.readJson('./package.json')
  • os package
    The os package.
await $`cd ${os.homedir()} && mkdir example`
  • path package
    The path package.
await $`mkdir ${path.join(basedir, 'output')}`
  • globby package
    The globby package.
let packages = await glob(['package.json', 'packages/*/package.json'])
  • yaml package
    The yaml package.
console.log(YAML.parse('foo: bar').foo)
  • minimist package
    The minimist package available as global const argv.
if (argv.someFlag) {
  echo('yes')
}
  • which package
    The which package.
let node = await which('node')

Configuration

$.shell

指定使用的shell。默认是哪个bash。

Specifies what shell is used. Default is which bash.


$.shell = ‘/usr/bin/bash’

Or use a CLI argument: --shell=/bin/bash


$.spawn

Specifies a spawn api. Defaults to require(‘child_process’).spawn.


$.prefix

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


Default is set -euo pipefail;.


Or use a CLI argument: --prefix=‘set -e;’


$.quote

Specifies a function for escaping special characters during command substitution.


$.verbose

Specifies verbosity. Default is true.


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


Or use the CLI argument --quiet to set $.verbose = false.


$.env

Specifies an environment variables map.


Defaults to process.env.


$.cwd

Specifies a current working directory of all processes created with the $.


The cd() func changes only process.cwd() and if no $.cwd specified, all $ processes use process.cwd() by default (same as spawn behavior).


$.log

Specifies a logging function.


import { LogEntry, log } from 'zx/core'

import { LogEntry, log } from 'zx/core'

$.log = (entry: LogEntry) => {
  switch (entry.kind) {
    case 'cmd':
      // for example, apply custom data masker for cmd printing
      process.stderr.write(masker(entry.cmd))
      break
    default:
      log(entry)
  }
}

Polyfills

__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')

FAQ

Passing env variables

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

Passing array of values

When passing an array of values as an argument to $, items of the array will be escaped individually and concatenated via space.


Example:

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

Importing into 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 that it is an ESM module.


Markdown scripts

The zx can execute scripts written as markdown:


zx docs/markdown.md

TypeScript scripts

import { $ } from ‘zx’

// Or

import ‘zx/globals’


void async function () {

await $ls -la

}()

Set “type”: “module” in package.json and “module”: “ESNext” in tsconfig.json.


Executing remote scripts

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


zx https://medv.io/game-of-life.js

Executing scripts from stdin

The zx supports executing scripts from stdin.


zx << ‘EOF’

await $pwd

EOF

Executing scripts via --eval

Evaluate the following argument as a script.


cat package.json | zx --eval ‘let v = JSON.parse(await stdin()).version; echo(v)’

Installing dependencies via --install

// script.mjs:

import sh from ‘tinysh’


sh.say(‘Hello, world!’)

Add --install flag to the zx command to install missing dependencies automatically.


zx --install script.mjs

You can also specify needed version by adding comment with @ after the import.


import sh from ‘tinysh’ // @^1

Executing commands on remote hosts

The zx uses webpod to execute commands on remote hosts.


import { ssh } from ‘zx’


await ssh(‘user@host’)echo Hello, world!

Attaching a profile

By default child_process does not include aliases and bash functions. But you are still able to do it by hand. Just attach necessary directives to the $.prefix.


. p r e f i x + = ′ e x p o r t N V M D I R = .prefix += 'export NVM_DIR=.prefix+=

exportNVM

D

IR=HOME/.nvm; source $NVM_DIR/nvm.sh; ’

await $nvm -v

Using GitHub Actions

The default GitHub Action runner comes with npx installed.


jobs:

build:

runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v3

  - name: Build
    env:
      FORCE_COLOR: 3
    run: |
      npx zx <<'EOF'
      await $`...`
      EOF

Canary / Beta / RC builds

Impatient early adopters can try the experimental zx versions. But keep in mind: these builds are ⚠️️__beta__ in every sense.


npm i zx@dev

npx zx@dev --install --quiet <<< ‘import _ from “lodash” /* 4.17.15 */; console.log(_.VERSION)’

License

相关文章
|
7月前
|
人工智能 搜索推荐 API
node-DeepResearch:开源复现版OpenAI Deep Research,支持多步推理和复杂查询的AI智能体
node-DeepResearch 是一个开源 AI 智能体项目,支持多步推理和复杂查询,帮助用户逐步解决问题。
780 27
node-DeepResearch:开源复现版OpenAI Deep Research,支持多步推理和复杂查询的AI智能体
|
5月前
|
JavaScript 安全 前端开发
关于Node.js,一定要学这个10+万Star项目 !!
一篇关于Node.js的宝藏项目——Node.js Best Practices。该项目在GitHub上已有102k Star,汇集了100+条最佳实践,涵盖架构、安全、性能等多方面。每条实践不仅有简明说明和详细解释,还附带代码示例及资源链接。文中通过三个实战案例(利用CPU多核、避免阻塞事件循环、使用中间件处理错误)展示了其实际应用价值,并推荐了几条对前端转Node.js开发者特别有用的最佳实践。强烈建议每位Node.js开发者学习此项目,理解“怎么做”与“为什么要这么做”,以提升开发能力。
154 3
|
数据采集 资源调度 JavaScript
Node.js 适合做什么项目?
【8月更文挑战第4天】Node.js 适合做什么项目?
593 5
|
人工智能 JavaScript 前端开发
计算机node项目|nodejs网上书城设计与实现
计算机node项目|nodejs网上书城设计与实现
255 2
|
开发框架 JavaScript 测试技术
nodejs使用eggjs创建项目,接入influxdb完成单表增删改查
nodejs使用eggjs创建项目,接入influxdb完成单表增删改查
154 0
|
JavaScript 关系型数据库 MySQL
创建nodejs项目并接入mysql,完成用户相关的增删改查的详细操作
创建nodejs项目并接入mysql,完成用户相关的增删改查的详细操作
191 0
|
JavaScript 应用服务中间件 Linux
宝塔面板部署Vue项目、服务端Node___配置域名
本文介绍了如何使用宝塔面板在阿里云服务器上部署Vue项目和Node服务端项目,并配置域名。文章详细解释了安装宝塔面板、上传项目文件、使用pm2启动Node项目、Vue项目打包上传、以及通过Nginx配置域名和反向代理的步骤。
3100 1
宝塔面板部署Vue项目、服务端Node___配置域名
|
11月前
|
SQL JavaScript 关系型数据库
node博客小项目:接口开发、连接mysql数据库
【10月更文挑战第14天】node博客小项目:接口开发、连接mysql数据库
|
11月前
|
JavaScript Linux 网络安全
VS Code远程调试Nodejs项目
VS Code远程调试Nodejs项目
|
JavaScript Linux 开发者
一个用于管理多个 Node.js 版本的安装和切换开源工具
【9月更文挑战第14天】nvm(Node Version Manager)是一个开源工具,用于便捷地管理多个 Node.js 版本。其特点包括:版本安装便捷,支持 LTS 和最新版本;版本切换简单,不影响开发流程;多平台支持,包括 Windows、macOS 和 Linux;社区活跃,持续更新。通过 nvm,开发者可以轻松安装、切换和管理不同项目的 Node.js 版本,提高开发效率。
341 5