@amdglobal/create-desktop-shortcuts

1.1.1 • Public • Published

create-desktop-shortcuts

Build Status Unit Test Coverage: 100% End-to-End Windows Passing End-to-End Linux Passing End-to-End OSX Passing Lint Coverage: 100% Compatible with Node 8.3+ Code of Conduct: No Ideologies MIT Licensed

Small, lightweight, cross-platform, built in validation!

Zero Dependencies, 100% Test Coverage, Automated Cross-Platform End-to-End tested

An easy, cross-platform, API to create desktop shortcuts with Node. (Works in NW.js too!)

This library is completely synchronous.

Installation

npm install --save create-desktop-shortcuts

Examples

Simple example:

const createDesktopShortcut = require('create-desktop-shortcuts');

const shortcutsCreated = createDesktopShortcut({
  windows: { filePath: 'C:\\path\\to\\executable.exe' },
  linux:   { filePath: '/home/path/to/executable'     },
  osx:     { filePath: '/home/path/to/executable'     }
});

if (shortcutsCreated) {
  console.log('Everything worked correctly!');
} else {
  console.log('Could not create the icon or set its permissions (in Linux if "chmod" is set to true, or not set)');
}

Advanced Example:

Each OS handles the concept of a shortcut icon slightly differently. So they each have a slightly different API, but I tried to keep them similar when they overlap.

const createDesktopShortcut = require('create-desktop-shortcuts');

const shortcutsCreated = createDesktopShortcut({
  // OPTIONAL: defaults to true
  onlyCurrentOS: true,
  // OPTIONAL: defaults to true
  verbose: true,
  /**
   * OPTIONAL: console.error is called by default if verbose: true.
   *
   * Your own custom logging function called with helpful warning/error
   * messages from the internal validators. Only used if verbose: true.
   *
   * @param  {string} message The human readable warning/error message
   * @param  {object} error   Sometimes an error or options object is passed
   */
  customLogger: function (message, error) {
    console.log(message, error);
  },
  windows: {
    // REQUIRED: Path must exist
    filePath: 'C:\\path\\to\\executable.exe',
    // OPTIONAL: Defaults to the Desktop of the current user
    outputPath: 'C:\\some\\folder',
    // OPTIONAL: defaults to the filePath file's name (without the extension)
    name: 'My App Name',
    // OPTIONAL
    comment: 'My App description',
    // OPTIONAL: File must exist and be ICO, EXE, or PNG
    icon: 'C:\\path\\to\\file.ico',
    // OPTIONAL
    arguments: '--my-argument -f \'other stuff\'',
    // OPTIONAL: defaults to 'normal'
    windowMode: 'normal',
    // OPTIONAL
    hotkey: 'ALT+CTRL+F'
  },
  linux: {
    // REQUIRED: Path must exist
    filePath: '/home/path/to/executable',
    // OPTIONAL: Defaults to the Desktop of the current user
    outputPath: '/home/some/folder',
    // OPTIONAL: defaults to the filePath file's name (without the extension)
    name: 'My App Name',
    // OPTIONAL
    description: 'My app description',
    // OPTIONAL: File must exist and be PNG or ICNS
    icon: '/home/path/to/file.png',
    // OPTIONAL: 'Application', 'Directory', or 'Link' (must logically match filePath)
    type: 'Application',
    // OPTIONAL: defaults to false
    terminal: false,
    // OPTIONAL: defaults to true
    chmod: true
  },
  osx: {
    // REQUIRED: Path must exist
    filePath: '/Applications/My App.app',
    // OPTIONAL: Defaults to the Desktop of the current user
    outputPath: '/home/some/folder',
    // OPTIONAL: defaults to the filePath file's name (without the extension)
    name: 'My App Name',
    // OPTIONAL: defaults to false
    overwrite: false
  }
});

// returns true if everything worked correctly, or false if it could not create the icon or set its permissions
console.log(shortcutsCreated);

Documentation

Global Settings

Key Type Allowed Default Description
onlyCurrentOS Boolean true, false true If true and you pass in objects for multiple OS's, this will only create a shortcut for the OS it was ran on.
verbose Boolean true, false true If true, consoles out helpful warnings and errors using customLogger or console.error.
customLogger Function Any function console.error You can pass in your own custom function to log errors/warnings to. When called the function will receive a message string for the first argument and sometimes an error object for the second argument. This is useful in NW.js to see the messages logged to the regular Chromium Developer Tools instead of the background page's developer tools. But this can also be useful in other scenarios, like adding in custom wrappers or colors in a command line/terminal. This function may be called multiple times before all synchronous tasks complete.

Windows Settings

Key Type Allowed Default Description
filePath String Any valid path or URL This is a required field This is the target the shortcut points to.
outputPath String Any valid path to a folder '%USERPROFILE%\\Desktop' Path where the shortcut will be placed.
name String Any file system safe string Uses name from filePath The name of the shortcut file.
comment String Any string Not used if not supplied Metadata file "comment" property. Description of what the shortcut would open.
icon String Valid path to file (ICO, EXE, or DLL) Uses OS default icon The image shown on the shortcut icon. You can also pass in an index if multiple icons, like 'C:\\file.exe,0'
arguments String Any string None Additional arguments passed in to the end of your target filePath
windowMode String 'normal', 'maximized', 'minimized' 'normal' How the window should be displayed by default
hotkey String Any string None A global hotkey to associate to opening this shortcut, like 'CTRL+ALT+F'

Linux Settings

Key Type Allowed Default Description
filePath String Any valid path or URL This is a required field This is the target the shortcut points to. Must be a valid/existing folder if type: 'Directory', or file if type: 'Application'.
outputPath String Any valid path to a folder Current user's desktop Path where the shortcut will be placed.
name String Any file system safe string Uses name from filePath The name of the shortcut file.
comment String Any string Not used if not supplied Metadata file "comment" property. Description of what the shortcut would open.
icon String Valid path to PNG or ICNS file Uses OS default icon The image shown on the shortcut icon. Preferably a 256x256 PNG.
type String 'Application', 'Link', 'Directory' Based on filePath Type of shortcut. Defaults to 'Link' if filePath starts with 'http://' or 'https://'. Defaults to 'Directory' if filePath exists and is a folder. Defaults to Application otherwise.
terminal Boolean true, false false If true, will run in a terminal.
chmod Boolean true, false true If true, will apply a chmod +x (755) to the shortcut after creation to allow execution permission.

OSX Settings

OSX will automatically inherit the icon of the target you point to. It doesn't care if you point to a folder, file, or application.

NOTE: If overwrite is set to false and a matching file already exists, a console.error will occur to inform you of this, however create-desktop-shortcuts will still report successful. This console.error can be hidden by setting verbose to false, or using a customLogger to intercept it.

Key Type Allowed Default Description
filePath String Any valid path or URL This is a required field This is the target the shortcut points to.
outputPath String Any valid path to a folder Current user's desktop Path where the shortcut will be placed.
name String Any file system safe string Uses name from filePath The name of the shortcut file.
overwrite Boolean true, false false If true, will replace any existing file in the outputPath with matching name. See above note for more details.

Credits

Author: The Jared Wilcurt

Parts of the windows.vbs were copied/modified based on:


How can you help improve this repo?

  • Report bugs in the GitHub issues
  • Request features
  • Fix reported bugs with a PR
  • Offer an async and sync mode, instead of just sync.
    • Note: Make sure it can still run in older versions of NW.js
  • Help with any of the known issues listed below:

Known issues

  1. Windows: If WScript does not like what is passed to it, it displays a Windows Dialog with an error on the line that failed. I have no idea how to turn that off, so I've just added in tons of validation checks to prevent anything from being passed in to it that could cause this. But may still occur if you pass in junk to it that gets by the validation checks.
  2. Linux: No real recourse if the script does not have permission to run chmod on Linux. You would just need to run it again with sudo or something. If you have ideas, create an issue or PR.
  3. OSX: I know of no way to set a custom icon image on OSX. It will just always use the same icon the executable had (or file type if linking to an .html file for example)
  4. Windows/Linux: May want to add in overwrite option for Windows and Linux too. This would require deleting the existing shortcut. Deleting files is something that each OS sucks at in different ways and would require pulling in something like fs-extra or similar dependency.

Package Sidebar

Install

npm i @amdglobal/create-desktop-shortcuts

Weekly Downloads

2

Version

1.1.1

License

MIT

Unpacked Size

38.9 kB

Total Files

8

Last publish

Collaborators

  • fauxsoup