Quickstart guide
Get up and running with TryDevUtils in minutes. This guide will walk you through accessing the platform and using your first developer utility.Choose your platform
TryDevUtils is available on three platforms. Choose the one that fits your workflow:Web app
No installation required—use instantly in your browser
Desktop app
Native apps for macOS, Windows, and Linux
Chrome extension
Access from your browser toolbar
Installation
Web app
Simply visit trydevutils.com in any modern browser. No installation required.Supported browsers:
- Chrome/Edge 90+
- Firefox 88+
- Safari 14+
Desktop app
Download the native app for your operating system from the GitHub releases page.macOS
- Download the
.dmgfile - Open the downloaded file
- Drag TryDevUtils to Applications
- Launch from Applications folder
- Download the
.exeinstaller - Run the installer
- Follow the installation wizard
- Launch from Start menu or desktop shortcut
- Download the
.AppImageor.debfile - Make it executable:
chmod +x TryDevUtils.AppImage - Run the application
The desktop app works completely offline after installation. All utilities function without an internet connection.
Chrome extension
Install the extension from the Chrome Web Store.
- Visit the Chrome Web Store link
- Click “Add to Chrome”
- Confirm the installation
- Click the extension icon in your toolbar to open TryDevUtils
Using your first utility
Let’s walk through using the JSON Toolbox to format and validate a JSON document.Open the command palette
From the TryDevUtils homepage, open the command palette using one of these methods:
- Press
⌘K(Mac) orCtrl+K(Windows/Linux) - Press
/from anywhere on the homepage - Click the “Search” button in the header
- Simply start typing any letter from the homepage
Find the JSON Toolbox
In the command palette, type
json to filter the utilities. You’ll see the JSON Toolbox appear in the results.Use arrow keys (↑/↓) to navigate and press Enter to select, or simply click on “JSON Toolbox”.The search works across utility names, descriptions, and categories. Try searching for “format”, “validate”, or “encoding” to discover utilities.
Paste your JSON
In the JSON Toolbox, you’ll see a text input area. Paste or type your JSON data. Try this example:The JSON Toolbox automatically:
- Validates your JSON in real-time
- Highlights syntax errors
- Shows formatting options
Format and validate
The JSON will be automatically formatted and validated. The JSON Toolbox provides several features:
- Format: Beautify with proper indentation
- Minify: Compress to a single line
- Validate: Check for syntax errors
- Diff: Compare two JSON documents
- Schema: Generate JSON Schema
- Query: Use JSONPath to query data
Exploring more utilities
Now that you’ve used your first utility, explore the other 21 tools available:Quick access methods
Command palette
Press
⌘K or / to search all utilities by name, description, or categoryHomepage grid
Browse all 21 utilities organized by category on the homepage
Favorites
Click the heart icon on any utility to add it to your favorites for quick access
Direct navigation
Bookmark specific utilities—each has its own URL (e.g.,
/base64, /jwt)Popular utilities to try next
Base64 Converter
Encode and decode Base64 strings. Perfect for API work and data transmission.Try it: Open command palette → type “base64” → paste encoded dataUse case: Decode Base64-encoded API responses or encode binary data for JSON payloads.
JWT Decoder
Decode and validate JSON Web Tokens to inspect claims and verify signatures.Try it: Open command palette → type “jwt” → paste your tokenUse case: Debug authentication issues by inspecting JWT headers and payloads.
RegExp Tester
Test and debug regular expressions with real-time matching and highlighting.Try it: Open command palette → type “regex” → enter your patternUse case: Validate regex patterns before using them in your code.
Keyboard shortcuts
TryDevUtils is designed for keyboard-driven workflows. Learn these shortcuts to boost your productivity:Global shortcuts
| Shortcut | Action |
|---|---|
⌘K or Ctrl+K | Open command palette |
/ | Open command palette (from homepage) |
? | Show all keyboard shortcuts |
Esc | Return to homepage or close dialogs |
Utility shortcuts
These shortcuts work within any utility:| Shortcut | Action |
|---|---|
⌘Enter or Ctrl+Enter | Execute/format/convert |
⌘Shift+C or Ctrl+Shift+C | Copy output to clipboard |
⌘L or Ctrl+L | Clear all inputs |
⌘Shift+V or Ctrl+Shift+V | Paste from clipboard |
Press
? anywhere in TryDevUtils to see the complete keyboard shortcuts reference.Tips for power users
Use favorites
Click the heart icon on utilities you use frequently. They’ll appear at the top of your homepage.
Bookmark utilities
Each utility has a unique URL. Bookmark
/jwt, /base64, etc. for instant access.Master the command palette
The command palette supports fuzzy search. Type “b64” to find “Base64 Converter”.
Theme preference
Toggle between light and dark themes using the theme button in the header. Your preference is saved.
Extension features
The Chrome extension includes additional features:- Sidebar navigation: Browse utilities by category in the left sidebar
- Compact layout: Optimized for smaller windows and side panels
- Same privacy: All processing happens locally, even in the extension
- Sync with web: Your favorites and preferences work across platforms
The extension requires Chrome or Edge version 90 or higher.
Desktop app features
The desktop app provides additional benefits:- Offline support: Works without an internet connection
- Native performance: Faster startup and execution
- System integration: Appears in your application launcher
- Auto-updates: Automatically checks for new versions
- Platform native: Follows your OS theme and conventions
Getting help
If you encounter any issues or have questions:Report a bug
Found a bug? Report it on GitHub with details and we’ll fix it.
Request a feature
Have an idea for a new utility or feature? We’d love to hear it.
View source code
TryDevUtils is open source. Browse the code, contribute, or self-host.
Privacy policy
Learn more about our privacy-first approach and data handling.
Next steps
You’re now ready to use TryDevUtils! Here’s what to do next:- Explore all 21 utilities by browsing the homepage or using the command palette
- Mark your favorites by clicking the heart icon on utilities you use often
- Learn keyboard shortcuts by pressing
?to boost your productivity - Try the desktop app if you want offline access and native performance
Back to introduction
Learn more about TryDevUtils features and philosophy