-
Notifications
You must be signed in to change notification settings - Fork 17.1k
Idea of runtime mode #673
Copy link
Copy link
Open
Labels
Description
Currently developers using atom-shell have to ship the whole atom-shell binaries when distributing their apps, but since now we have asar as atom-shell's app format, we may add runtime mode to atom-shell like Adobe Air or Chrome Hosted Apps that developers only need to distribute packaged app in asar format as long as end users have the runtime mode of atom-shell installed.
The runtime mode can just be another app based on atom-shell (let's call it atom-runtime for now), and has deep platform integrations:
- On Windows, we can provide installer and auto updater for atom-runtime, and register the
.asarfile type to be opened with it. - On Linux, we provide official software sources of atom-runtime for some popular distributions, and also register atom-runtime as handler of
.asarfiles. - On Mac, we need to provide a tool to help users package their apps into Mac bundles. We can reference how Steam created bundles for downloaded games, or how Parallel created bundles for applications in hosted OS.
We can even provide a tool or service to help generating installers for developers' apps which can automatically download atom-runtime if it is not installed on user's machine, just like many .NET applications.
Reactions are currently unavailable