Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/retypeapp/retype/llms.txt

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

Retype is a command line tool. Installation is quick and you can be up and running within seconds.

Prerequisites

Retype is installed using either npm, yarn, or the dotnet CLI. You only need one of the three package managers — though all three can coexist on the same machine.
Package managermacOSWindowsLinux
npmYesYesYes
yarnYesYesYes
dotnetYesYesYes
If you already have the dotnet CLI installed, dotnet tool install retypeapp --global is the fastest option. All package managers produce identical results and the same runtime performance.

Install Retype

Copy and run one of the following commands based on the package manager installed on your machine.
npm install retypeapp --global

Verify installation

Confirm that Retype installed correctly by checking the version:
retype --version
If the command returns a version number, you are ready to go. If it is not found, Retype is not installed.

Update

Update to the latest release using the same package manager you used to install Retype.
npm update retypeapp --global

Uninstall

Uninstall Retype using the same package manager you used to install it.
npm uninstall retypeapp --global
After uninstalling, you can also delete the retype.yml configuration file and the generated .retype output folder from your project.

Version and tag specific installs

When you need a specific version or tagged release for dependency compatibility, all three package managers support version pinning.
  • @latest — always installs the latest public release (default if no version is specified)
  • @next — installs the upcoming -preview release, if available
Replace [version-or-tag] in the commands below with the actual version number or tag (for example, 3.5.0).
npm install retypeapp@[version-or-tag] --global

Platform-specific packages

The default retypeapp npm package is a bundle of platform-specific packages. The installer automatically selects the correct one for your system. The dotnet installer does the same. For npm and yarn, you can optionally install a smaller platform-specific package directly, bypassing the bundle.

macOS

npm install retypeapp-darwin-x64 --global
OSVersionArchitectures
macOS10.15+x64, Arm64

Windows

# 64-bit
npm install retypeapp-win-x64 --global

# 32-bit
npm install retypeapp-win-x86 --global
OSVersionArchitectures
Windows 10Version 1607+x64, x86, Arm64
Windows 11Version 22000+x64, x86, Arm64
Windows Server2012+x64, x86
Windows Server Core2012+x64, x86
Nano ServerVersion 1809+x64

Linux

npm install retypeapp-linux-x64 --global
OSVersionArchitectures
Alpine Linux3.15+x64, Arm64, Arm32
CentOS Linux7x64
CentOS Stream8x64
Debian10+x64, Arm64, Arm32
Fedora36+x64
openSUSE15+x64
Oracle Linux7+x64
Red Hat Enterprise Linux7+x64, Arm64
SUSE Enterprise Linux (SLES)12 SP2+x64
Ubuntu18.04+x64, Arm64, Arm32

Build docs developers (and LLMs) love