Get Started
Taurify is a system that simplifies the process of Web-based desktop and mobile application development and distribution.
Installation
The Taurify CLI is all you need to turn your web application into a desktop and mobile app. The CLI is distributed on NPM, you can install it with your preferred package manager:
npm i -D taurify
yarn add -D taurify
pnpm add -D taurify
bun add -D taurify
Initializing
To start developing your application, you must initialize the Taurify configuration. Run taurify init
and the CLI will guide you through the options that you must configure.
npm exec taurify init
yarn taurify init
pnpm taurify init
bunx taurify init
Developing
The taurify dev
command starts your application in development mode.
npm exec taurify dev
yarn taurify dev
pnpm taurify dev
bunx taurify dev
See the developing guide for more information on how to develop your application for desktop and mobile.
Distributing
The taurify build
command triggers a new release of your application. Our servers take care of the distribution for all platforms,
but you must prepare your application and configure the distribution first. See the distribution documentation.
To handle auto-updates you must configure your application to check and install them. See the updater guide for more information.
npm exec taurify build
yarn taurify build
pnpm taurify build
bunx taurify build