Quick Install via Homebrew
$ brew install aarush67/tap/devlycli

Why Devly CLI?

Instant Access

Run any tool directly from your terminal. No context switching to browser tabs or separate apps.

100% Offline

All processing happens locally. Your data never leaves your machine. Safe for tokens and credentials.

Smart Timeouts

Auto-adjusts timeout based on input size. From 30s for small files to 180s for large datasets.

Resource Aware

Limits to 30% system RAM. Estimates memory upfront and rejects jobs that would exceed limits.

Pipe Friendly

Works seamlessly with Unix pipes. Chain commands, read from stdin, export to files.

50+ Tools

Encoding, decoding, hashing, formatting, converting. Everything you need in one CLI.

See It in Action

1 Fetch a user, format the JSON, then extract a field with JSONPath
curl -s https://dummyjson.com/users/1 | devly jsonformat | devly jsonpath "$.firstName"
2 Save JSON to a file then convert it to YAML in one pipeline
curl -s https://dummyjson.com/users/1 > /tmp/user.json && devly json2yaml --path /tmp/user.json
3 Extract the email address then hash it — locally, never leaving your machine
curl -s https://dummyjson.com/users/1 \
  | devly jsonpath "$.email" \
  | devly hash
4 Authenticate, pluck the access token, and decode the JWT — all in one chain
curl -s -X POST https://dummyjson.com/auth/login \
  -H "Content-Type: application/json" \
  -d '{"username":"emilys","password":"emilyspass"}' \
  | devly jsonpath "$.accessToken" \
  | devly jwt
Terminal
# Encode a string to Base64
devly base64 "Hello World"

# Format JSON from a file
devly jsonformat --path data.json

# Pipe JSON and export formatted output
cat api-response.json | devly jsonformat --export pretty.json

# Decode a JWT token
devly jwt "eyJhbGciOiJIUzI1NiIs..."

# Generate SHA-256 hash
echo "password123" | devly hash

# Convert JSON to YAML
devly json2yaml --path config.json --export config.yaml

Ready to get started?

Install Devly CLI in seconds and start using 50+ developer tools from your terminal.

Install CLI Browse All Tools