All Projects → mimecorg → launchui

mimecorg / launchui

Licence: MIT License
Launcher for GUI Node.js applications using libui-node.

Programming Languages

javascript
184084 projects - #8 most used programming language
C++
36643 projects - #6 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to launchui

hello-libui
Hello World application using libui from maven repository
Stars: ✭ 17 (-84.11%)
Mutual labels:  desktop, libui
launchui-packager-gui
GUI front-end for LaunchUI Packager.
Stars: ✭ 46 (-57.01%)
Mutual labels:  desktop, libui
Vuido
Native desktop applications using Vue.js.
Stars: ✭ 6,084 (+5585.98%)
Mutual labels:  desktop, libui
sdfx
C# bindings for https://github.com/andlabs/libui targeting .NET Standard.
Stars: ✭ 31 (-71.03%)
Mutual labels:  desktop, libui
launchui-packager
Package applications using LaunchUI for Windows, Linux and OS X.
Stars: ✭ 69 (-35.51%)
Mutual labels:  desktop, libui
ValliStart
A start menu to replace the un-customizable one that you have right now.
Stars: ✭ 89 (-16.82%)
Mutual labels:  launcher, desktop
devhub
TweetDeck for GitHub - Filter Issues, Activities & Notifications - Web, Mobile & Desktop with 99% code sharing between them
Stars: ✭ 8,064 (+7436.45%)
Mutual labels:  desktop
ProjBobcat
The next generation Minecraft launcher core written in C# providing the freest, fastest and the most complete experience.
Stars: ✭ 80 (-25.23%)
Mutual labels:  launcher
SpaceId
macOS space indicator
Stars: ✭ 116 (+8.41%)
Mutual labels:  desktop
Creators.TF-Community-Launcher
The Creators.TF Community Launcher is a launcher created to help install and update mod content for TF2.
Stars: ✭ 49 (-54.21%)
Mutual labels:  launcher
qclauncher
Quake Champions Quick Launcher - QC without the Bethesda Launcher
Stars: ✭ 58 (-45.79%)
Mutual labels:  launcher
WindowResizer
Save and restore your window size and position with a hotkey
Stars: ✭ 51 (-52.34%)
Mutual labels:  desktop
cloud-desktops
Cloud-based Virtual Desktops on Google Cloud Platform
Stars: ✭ 14 (-86.92%)
Mutual labels:  desktop
PSVirtualDesktop
VirtualDesktop is a Powershell module that provides commandlets to manage virtual desktops of Windows 10.
Stars: ✭ 87 (-18.69%)
Mutual labels:  desktop
pakkero
Pakkero is a binary packer written in Go made for fun and educational purpose. Its main goal is to take in input a program file (elf binary, script, even appimage) and compress it, protect it from tampering and intrusion.
Stars: ✭ 143 (+33.64%)
Mutual labels:  launcher
mcpelauncher
Launch MCPE on macOS! (archived-- has been merged back upstream)
Stars: ✭ 12 (-88.79%)
Mutual labels:  launcher
modmail
Extremely Moddable Gmail
Stars: ✭ 12 (-88.79%)
Mutual labels:  desktop
For 0416
당신의 컴퓨터에 노란리본을 달아드립니다. For_0416 & Remember 0416
Stars: ✭ 70 (-34.58%)
Mutual labels:  desktop
gitlab task manager
Microsoft Todo inspired task manager leveraging Gitlab's Issue Tracker as the backend
Stars: ✭ 22 (-79.44%)
Mutual labels:  desktop
desktop
Extendable calculator for the 21st Century ⚡
Stars: ✭ 85 (-20.56%)
Mutual labels:  desktop

LaunchUI

Launcher for GUI Node.js applications using libui-node.

NPM module MIT License

Introduction

Although native desktop applications can run in the standard Node.js environment, it is recommended to use LaunchUI to package and distribute them to end users.

Thanks to LaunchUI, users don't need to install any packages using npm or to use the command line. They don't even need to have Node.js installed. They can simply download the package, unzip it and run the application by double-clicking its icon.

LaunchUI wraps Node.js with a small executable which automatically runs the application. No console window is opened and in case of a fatal error, it is reported using a message box.

LaunchUI was created for Vuido, but it should also work with Proton Native and applications using vanilla libui-node.

Usage

The easiest way to create a package for your application is to use the LaunchUI Packager. It provides an API for creating packages for Windows, Linux and OS X.

You can also manually download the binary package for the target platform from LaunchUI releases, unpack it and replace the example app/main.js script with your application script.

Installation

Usually there is no need to install LaunchUI, because during development you can use standard Node.js to run your application, and for creating packages it's recommended to use LaunchUI Packager which provides a more robust API.

You can install LaunchUI locally if you want to download the binary packages in your custom build scripts:

npm install --save-dev launchui

API

LaunchUI provides an API for downloading the binary packages for the given platform and architecture.

const launchui = require( 'launchui' );

launchui.download( {
  version: '0.1.0',
  platform: 'win32',
  arch: 'ia32',
  cache: './.cache'
}, function ( err, zipPath ) {
  // zipPath will be the path of the downloaded or existing package
} );

The download() function supports the following options:

  • version: Version of the binary package to download. The default value is the current version of the launchui module.
  • platform: The platform of the package. The default value is process.platform. The supported values are win32, darwin (OS X) and linux.
  • arch: The architecture of the package. The default value is process.arch. The supported values are x64 (on all platforms) and ia32 (on win32/linux only).
  • cache: Path of the directory where the downloaded package is stored. The default cache location is ~/.launchui.

The current version of the launchui module is available as launchui.version.

Supported platforms

  • Windows 7 or newer (32-bit and 64-bit)
  • OS X 10.8 or newer (64-bit)
  • Linux (32-bit and 64-bit)

Building

Building LaunchUI is only necessary if you need to make some customizations. In most cases it's enough to use the binary packages provided in the LaunchUI releases.

Use the following command to download and extract the source codes of Node.js, libui and libui-node to the deps/ subdirectory:

npm run download

You can edit tools/download-deps.json to change the versions of downloaded packages.

Use the following command to build all dependencies and the LaunchUI executable in 32-bit or 64-bit mode:

npm run build --arch=[ia32|x64]

The --arch option is only supported on Windows. It makes it possible to select 32-bit or 64-bit target architecture. On Linux and OS X the target architecture is the same as the host architecture.

To build LaunchUI on Windows, you will need the following prerequisites:

To build LaunchUI on Linux, you will need:

To build LaunchUI on OS X, you will need:

  • Xcode
  • CMake 3.0 or newer

Use the following command to create a binary package in the packages/ subdirectory:

npm run package --arch=[ia32|x64]

The --arch option is only supported on Windows.

License

LaunchUI is licensed under the MIT license

Copyright (C) 2018 Michał Męciński

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].