• This repository has been archived on 30/Nov/2017
  • Stars
    star
    178
  • Rank 211,253 (Top 5 %)
  • Language
    JavaScript
  • Created over 7 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Automatically move Electron apps to the Applications directory

This functionality is now baked into Electron and the project is archived. I suggest using the new native API.

npm version

Electron LetsMove

A module that offers to automatically move your Electron app to the Applications folder if opened from another location. Inspired by LetsMove for MacOS.

Electron LetsMove

Requirements

This module is designed to be used within Electron on macOS, it can be included in a cross platform Electron app and is a no-op on the Windows and Linux platforms.

Installation

npm install --save electron-lets-move

Usage

You should call the moveToApplications method as soon as possible after the app ready event in the main process. Ideally before the user has any chance to interact with the application.

moveToApplications returns a promise that will resolve when the application is in the correct location, the user asked not to move or an error occurred. You can also provide an optional node-style callback as the only parameter.

ES5

const {app} = require('electron');
const {moveToApplications} = require('electron-lets-move');

app.on('ready', function() {
  moveToApplications(function(err, moved) {
    if (err) {
      // log error, something went wrong whilst moving the app.
    }
    if (!moved) {
      // the user asked not to move the app, it's up to the parent application
      // to store this information and not hassle them again.
    }

    // do the rest of your application startup
  });
});

ES6

import {app} from 'electron';
import {moveToApplications} from 'electron-lets-move';

app.on('ready', async () => {
  try {
    const moved = await moveToApplications();
    if (!moved) {
      // the user asked not to move the app, it's up to the parent application
      // to store this information and not hassle them again.
    }
  } catch (err) {
    // log error, something went wrong whilst moving the app.
  }

  // do the rest of your application startup
});

License

Electron LetsMove is released under the MIT license. It is simple and easy to understand and places almost no restrictions on what you can do with it. More Information

More Repositories

1

tinycon

A small library for manipulating the favicon, in particular adding alert bubbles and changing images.
JavaScript
5,110
star
2

crumble

Crumble makes it easy to create feature tours in your website or app.
JavaScript
659
star
3

react-emoji-render

Normalize and render emoji's the way your users expect.
JavaScript
336
star
4

emojione-picker

A react emoji picker for use with emojione
JavaScript
261
star
5

fastimage

FastImage finds the dimensions or filetype of an image at a url by fetching the least data possible
PHP
162
star
6

HackerNew

The best Chrome extension to make Hacker News quicker and more useful.
JavaScript
123
star
7

fontselect-jquery-plugin

A font selector for the Google Web Fonts api
JavaScript
102
star
8

navigate-jquery-plugin

Allows any group of dom elements to be navigated with the keyboard arrows
JavaScript
16
star
9

tinyrange-jquery-plugin

TinyRange is a small jquery slider plugin that augments the html5 range element
JavaScript
15
star
10

promise-pool

A flexible pool of promises that can be awaited and executed at a chosen level of concurrency
JavaScript
10
star
11

Zap

Zap! is an audio manager for html 5 applications with a focus on real time and interactive applications such as games.
JavaScript
7
star
12

distribute-jquery-plugin

Ensures child elements are horizontally spaced evenly in fluid layouts
JavaScript
6
star
13

mime-names

Media Type Names Database
JavaScript
4
star
14

Testing-Repo

Testing Repository.
JavaScript
4
star
15

annotatey

Draw annotations on any website and save to Dropbox. Hack project for TechCrunch Disrupt 2013
JavaScript
3
star
16

dotfiles

My dotfiles. It's public because it's free, not because you should care.
Ruby
3
star
17

sheffield-js-photobooth

Sample application built for talk on node-webkit at Sheffield.js
JavaScript
2
star
18

felony

WIP. HTML5 top-down game using box2d
JavaScript
1
star
19

macflix

Mac desktop wrapper for Netflix with all the goodies you'd expect
JavaScript
1
star
20

electronguides.github.io

A collection of guides for those building Electron apps
1
star
21

pulse-jquery-plugin

Animate the DOM using a mediaStream
JavaScript
1
star
22

personal-api

WIP, framework for anyone to easily build a personal API.
JavaScript
1
star
23

vagrant-heroku

Ruby
1
star
24

easy-peer-connection

A wrapper library to make PeerConnections in the web browser easy
1
star
25

tommoor.github.io

Personal website
HTML
1
star
26

doorman

This script answers my front door
JavaScript
1
star
27

quantified-chrome

Track your browsing habits
CSS
1
star
28

filecop

Checks filenames against a library of filename rules to find sensitive files
Ruby
1
star
29

forest

Fast, detailed event logging for lithium PHP
1
star