Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/DevToys-app/DevToys/llms.txt

Use this file to discover all available pages before exploring further.

DevToys is available as a native desktop application for Windows, macOS, and Linux. Choose the installation method that fits your workflow — every option installs the same full-featured app with all 30+ built-in tools included. The installer for each platform bundles the .NET 8.0 runtime, so no separate .NET installation is required for end users.
The .NET 8.0 runtime is bundled inside every DevToys installer. End users do not need to install .NET separately before running DevToys.

Installing the Desktop App

DevToys supports Windows 10 version 1903 (build 18362) or later and Windows 11.Microsoft Store (recommended)The easiest way to install DevToys on Windows and receive automatic updates.
  1. Open the Microsoft Store app.
  2. Search for DevToys.
  3. Click Get to install.
Alternatively, open this link directly in your browser:
ms-windows-store://pdp/?productid=9PGCV4V3BK4W

WinGetInstall from the command line using the Windows Package Manager:
winget install DevToys

ChocolateyIf you use the Chocolatey package manager:
choco install devtoys

Direct Installer (GitHub Releases)Download the .exe or .msix installer directly from the GitHub Releases page. Run the installer and follow the on-screen prompts.
The Microsoft Store version updates automatically in the background. The WinGet and Chocolatey methods let you script upgrades as part of a machine setup playbook.

Installing DevToys CLI

DevToys CLI (DevToys.CLI) is a standalone command-line executable that exposes every CLI-enabled tool as a sub-command. It is published as a self-contained binary for all three platforms alongside the desktop app on the GitHub Releases page. Download the archive that matches your platform and architecture, extract it, and add the directory to your $PATH (or %PATH% on Windows):
# Example: verify the CLI is available
devtoys --help
Each tool that supports CLI mode is listed as a sub-command. For example:
# Encode a string with Base64
devtoys base64 --file ./data.txt

# or using the alias
devtoys b64 --file ./data.txt

Verifying Installation

After installing, confirm DevToys is working correctly with these steps:
1

Launch the application

Open DevToys from the Start Menu (Windows), Launchpad (macOS), or your application launcher (Linux).
2

Check the tool list

The left sidebar should display all seven tool categories — Converters, Encoders/Decoders, Formatters, Generators, Graphic, Testers, and Text — each containing several tools.
3

Test Smart Detection

Copy a JSON snippet to your clipboard (for example {"hello": "world"}). DevToys should automatically highlight the JSON tool in the sidebar and pre-fill the input field.
4

Verify the CLI (optional)

If you installed DevToys CLI, open a terminal and run:
devtoys --version
The version number should print without any errors.

Build docs developers (and LLMs) love