Access 50+ developer tools from your terminal. Install in seconds, run entirely offline, and process data at native speed.
$ brew install aarush67/tap/devlycli
Install Devly CLI with Homebrew in one command. System requirements, verification, and troubleshooting.
Read guide 02Master all flags and options. Pipe input, read from files, export output, and configure timeouts.
Read guide 03Complete reference for all 50+ tools. Encoding, hashing, formatting, converters, and dev utilities.
Browse toolsRun any tool directly from your terminal. No context switching to browser tabs or separate apps.
All processing happens locally. Your data never leaves your machine. Safe for tokens and credentials.
Auto-adjusts timeout based on input size. From 30s for small files to 180s for large datasets.
Limits to 30% system RAM. Estimates memory upfront and rejects jobs that would exceed limits.
Works seamlessly with Unix pipes. Chain commands, read from stdin, export to files.
Encoding, decoding, hashing, formatting, converting. Everything you need in one CLI.
curl -s https://dummyjson.com/users/1 | devly jsonformat | devly jsonpath "$.firstName"
curl -s https://dummyjson.com/users/1 > /tmp/user.json && devly json2yaml --path /tmp/user.json
curl -s https://dummyjson.com/users/1 \ | devly jsonpath "$.email" \ | devly hash
curl -s -X POST https://dummyjson.com/auth/login \ -H "Content-Type: application/json" \ -d '{"username":"emilys","password":"emilyspass"}' \ | devly jsonpath "$.accessToken" \ | devly jwt
# 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
Install Devly CLI in seconds and start using 50+ developer tools from your terminal.