juk-cli
v0.2.0
Published
command line interface utilities
Downloads
416
Readme
juk-cli
A simple and lightweight command-line interface for the js-utils-kit ecosystem, providing useful utilities for environment checks and scripting workflows.
The CLI is designed to work well in local development, CI pipelines, and automation scripts.
Installation
Run without installing
npx juk-cli --helpInstall globally
pnpm add -g juk-cliUsage
juk-cli [options]Alias:
juk [options]js-utils-kit [options]utils [options]API
--help
Show the help message.
--version
Show the CLI version.
--is-ci
Detect whether the current process is running in a Continuous Integration (CI) environment.
The --is-ci flag is designed for scripting and automation.
- Exits with
0if running in a CI environment - Exits with
1otherwise - Produces no output (safe for shell usage)
Example:
juk --is-ci && echo "Running in CI"