-temp-electron-manager-somiibo
v0.0.200
Published
An NPM module with tools, helper functions, and utilities for building a flawless Electron app 🚀
Downloads
3
Readme
Install
Install with npm:
npm install electron-manager
Note: This module requires a peer dependency of Electron. The required version can be found in the package.json.
Features
- Correctly handles a ton of things that Electron falls short on in cross-platform cases like:
setAsDefaultProtocolClient
,getApplicationNameForProtocol
,isDefaultProtocolClient
, and more - Provides a simple cross-platform method to set your app to auto launch at startup (Includes Windows Store and some Linux distros)
- Provides an easy cross-platform method to set your app as the default browser
Example Setup
After installing via npm, simply require
the library and begin enjoying this simple tool 🧰.
// In your main.js file
const Manager = new (require('electron-manager'))({
appName: 'Electron',
appId: 'electron',
})
Options
appName
: This should be the name of your app and what end users would see, such asElectron.
- The
appName
is used to get/set things on Windows so it should be whatever yourApplications\\*.exe
file's name is.
- The
appId
: This should be the id of your app such aselectron.
- The
appId
is used to get/set protocols on Linux so it should be whatever your*.desktop
file's name.
- The
Properties
environment
: Can be eitherdevelopment
orproduction
(useselectron-is-dev
).isLinux
: Will be true if your app is running on Linux.isSnap
: Will be true if your app is running as a Linux Snap (useselectron-is-snap
).storeName
: Can be eithermac
,windows
,snap
, ornone
.
.app() Library
This library practically replaces some methods of Electron's app
API. You don't need to use these and the original APIs as these methods can replace the existing ones.
.app().setAsDefaultProtocolClient(protocol, options)
Correctly sets your app as the default handler for a protocol
. Calls xdg-mime default
and xdg-settings set
under the hood which Electron fails to do for Linux.
await Manager.app().setAsDefaultProtocolClient('electron');
// Output: null (for now)
.app().getApplicationNameForProtocol(protocol)
Correctly gets the app name that handles a protocol
. Protocol must include ://
just like normal. Calls xdg-settings get default-url-scheme-handler
under the hood which Electron fails to do for Linux.
await Manager.app().getApplicationNameForProtocol('electron');
// Output: String
.app().isDefaultProtocolClient(protocol, options)
Correctly checks whether your app is the default handler for a protocol
. Calls xdg-settings get default-url-scheme-handler
under the hood which Electron fails to do for Linux.
await Manager.app().isDefaultProtocolClient('electron');
// Output: Boolean
.app().setLoginItemSettings(options)
This is how you get an auto-launching app!. Automatically adds a super helpful flag: --was-opened-at-login="true"
.
The only distros this doesn't seem to work on are MAS and Linux Snap. RIP.
await Manager.app().setLoginItemSettings({
openAtLogin: true,
});
// Output: null (for now)
.app().setAsDefaultBrowser(options)
Correctly sets your app as a default browser for every platform. Yes, even on Windows!.
await Manager.app().setAsDefaultBrowser();
// Output: null (for now)
Note: If you want to do this on Windows, you need to somehow distribute a helper executable called SetUserFTA and then supply the path to this in the option setUserFTAPath
. This option has no effect on other platforms since other platforms work more easily.
const { app } = require('electron');
const path = require('path');
const appDataPath = path.resolve(app.getPath('appData'), 'set-user-fta.exe')
await Manager.app().setAsDefaultBrowser({
setUserFTAPath: appDataPath,
});
// Output: null (for now)
.app().isDefaultBrowser(options)
Correctly returns whether your app is the default browser on any platform.
await Manager.app().isDefaultBrowser();
// Output: Boolean
.app().wasOpenedAtLogin(options)
Correctly returns whether your app was opened at login. Remember that --was-opened-at-login="true"
flag we set earlier when we called await Manager.app().setLoginItemSettings()
? Wow this is so easy!.
await Manager.app().wasOpenedAtLogin();
// Output: Boolean
Note: Before you get your hopes too high, there's no way to set or get the --was-opened-at-login="true"
flag on Linux or Windows Store yet. To compensate, this method will check to see if the app was opened within 120
seconds of the OS booting up or the user logging in. Thus, it's best to call this as early as possible in your app.
It's by no means a perfect solution but it will work 90% of the time. You can change the threshold
to whatever seconds you want:
await Manager.app().wasOpenedAtLogin({
threshold: 60, // Don't go too low (most people have slow-ass computers)
});
// Output: Boolean
Default DOM operations
brand-name-element
: Set toproductName
inpackage.json
app-id-element
: Set toname
inpackage.json
current-version-element
: Set toversion
inpackage.json
current-year-element
: Set to the current yearmanager-initialized-element
: Removed whenElectronManager
finishes initializing.upgrade-account-btn
: Enabled ifuser.plan.id
===basic
App arguments
Use arguments like npm start -- --name="value"
to test and streamline your development
--useDevelopmentURLs="true"
(true
): Will use localhost:4000 instead of live URLS- Can be
true
orfalse
- Can be
--enableLiveSentry="false"
(false
): Will actually send errors to Sentry iftrue
- Can be
true
orfalse
- Can be
--was-opened-at-login="false"
(false
): Change Electron Manager's behavior for handling if the app was opened at login.- Can be
true
orfalse
- Can be
--devUpdateStatus="available"
(available
): Change theelectron-updater
flow.- Can be
available
,unavailable
, orerror
- Can be
Other libraries and features
This is just the beginning. More great features and fixes will be coming soon
Final Words
If you are still having difficulty, we would love for you to post a question to the Electron is Snap issues page. It is much easier to answer questions that include your code and relevant files! So if you can provide them, we'd be extremely grateful (and more likely to help you find the answer!)
Projects Using this Library
Somiibo: A Social Media Bot with an open-source module library. JekyllUp: A website devoted to sharing the best Jekyll themes. Slapform: A backend processor for your HTML forms on static sites. Sniips: A modern, hackable snippet manager Proxifly: An API to get free proxies for your services. Optiic: A free OCR image processing API. SoundGrail Music App: A resource for producers, musicians, and DJs.
Ask us to have your project listed! :)
Other Great Libraries
node-powertools: An NPM module for backend and frontend developers that exposes powerful utilities and tools. electron-is-snap: An NPM module for checking if your app is running in a snap environment optiic: An OCR image processing API. proxifly: An API to find proxies for your apps. slapform: A form backend API.