A Deno version of https://github.com/google/zx
โ ๏ธ As stated by the zx author, zx won't try to support Deno, and therefore some API cannot be implemented properly (for instancerequireand otherexecrelated features)If you really want Deno support, you should switch to another library, for instance bazx
#!/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. zx package provides
useful wrappers around Deno.run, escapes arguments and
gives sensible defaults.
deno install -A --unstable https://deno.land/x/zx_deno/mod.mjsRequired permissions:
--allow-runto allow running commands--allow-readtoawait importthe script to run--allow-envfor subprocess to work correctly
Not that scripts permissions inherits zx permissions
Write your scripts in a file with .mjs extension in order to
be able to use await on top level. If you prefer .js extension,
wrap your script in something like void async function () {...}().
Add next shebang at the beginning of your script:
#!/usr/bin/env zxNow you will be able to run your script as:
chmod +x ./script.mjs
./script.mjsOr via zx bin:
zx ./script.mjsWhen using zx via bin or shebang, all $, cd, fetch, etc
are available without imports.
Executes given string using Deno.run function and returns Promise<ProcessOutput>.
let count = parseInt(await $`ls -1 | wc -l`)
console.log(`Files count: ${count}`)Example. Upload files in parallel:
let hosts = [...]
await Promise.all(hosts.map(host =>
$`rsync -azP ./src ${host}:/var/www`
))If executed program returns 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}`)
}class ProcessOutput {
readonly exitCode: number
readonly stdout: string
readonly stderr: string
toString(): string
}Changes working directory.
cd('/tmp')
await $`pwd` // outputs /tmp The native fetch() function provided by Deno
let resp = await fetch('http://wttr.in')
if (resp.ok) {
console.log(await resp.text())
}This is a wrapper around window.prompt. As of now, the option parameter is ignored.
type QuestionOptions = { choices: string[] }
function question(query: string, options?: QuestionOptions): Promise<string>Usage:
let username = await question('What is your username? ')
let token = await question('Choose env variable: ', {
choices: Object.keys(Deno.env.toObject())
})The chalk package provided in the original zx package is replaced by the standard https://deno.land/std/fmt/colors.ts module
console.log(colors.blue('Hello world!'))The fs module available without importing inside scripts.
let content = await fs.readFile('./package.json')Promisified version imported by default. Same as if you write:
import {promises as fs} from 'https://deno.land/[email protected]/node/fs.ts'The os package available without importing inside scripts.
await $`cd ${os.homedir()} && mkdir example`Specifies what shell is used. Default is which bash.
$.shell = '/usr/bin/bash'Specifies command what will be added to all command. Default is
set -euo pipefail;.
Specifies a function what will be used for escaping special characters in
command substitution. Default is singleArgument from
shell_escape module.
Specifies verbosity. Default: true.
In verbose mode prints executed commands with outputs of it. Same as
set -x in bash.
It's possible to use $ and others with explicit import.
#!/usr/bin/env node
import {$} from 'https://deno.land/x/zx_deno/mod.mjs'
await $`date`Deno.env.set('FOO', 'bar')
await $`echo $FOO`If arg to zx bin starts with https://, it will be downloaded and executed.
zx https://medv.io/example-script.mjs