A light-weight version of google/zx
npm i -D @kiyoshiro/zx-lite
Write your script in .mts
file.
// script.mts
import "@kiyoshiro/zx-lite/globals"
// Look. Different from google/zx, you can omit `await`
$`sleep 1`
$`echo Hello, world!`
Run your script.
npx zx script.mts
- 🔋 Run TS file only with this library(google/zx needs ts-node or other TS runner).