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 taurifyyarn add -D taurifypnpm add -D taurifybun add -D taurifyInitializing
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 inityarn taurify initpnpm taurify initbunx taurify initDeveloping
The taurify dev command starts your application in development mode.
npm exec taurify devyarn taurify devpnpm taurify devbunx taurify devSee 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 buildyarn taurify buildpnpm taurify buildbunx taurify build