Quick Start

Get Started with DeskForge

Turn your web application into a cross-platform desktop app in less than 5 minutes.

1

Install the CLI

Start by installing the DeskForge CLI globally on your machine. This tool will help you initialize, build, and manage your desktop apps.

Terminal
npm install -g @deskforge/cli
2

Initialize Your Project

Navigate to your web app's directory and run the init command. You'll be guided through a few questions to configure your desktop app.

cd my-web-app deskforge init

You'll be asked for:

  • Project name
  • Web app URL (e.g., https://myapp.com)
  • Target platforms (macOS, Windows, Linux)
3

Authenticate

Log in to your DeskForge account to enable cloud builds. This allows you to build for all platforms regardless of your OS.

deskforge login
4

Build & Deploy

Trigger your first build. DeskForge will package your web app into native installers for your selected platforms.

deskforge build
Builds run in the cloud and handle code signing automatically.

What's Next?