Giter Site home page Giter Site logo

pixelport / windows-shortcut-maker Goto Github PK

View Code? Open in Web Editor NEW

This project forked from phtdacosta/windows-shortcut-maker

0.0 1.0 0.0 3.32 MB

Native and lightweight module to make file shortcuts on Windows using Node.js

License: GNU General Public License v3.0

JavaScript 57.43% VBScript 42.57%

windows-shortcut-maker's Introduction

windows-shortcut-maker

Native and lightweight module to make file shortcuts on Windows using Node.js

npm npm version David Dependancy Status NpmLicense

This module uses a Windows VBScript file to get native access to the operational system API responsible for making file shortcuts.

Why this module is great?

  • Although it is native, there is no need to compile anything.
  • It is totally open source and uses no binary files, no external dependencies and no bizarre workarounds.
  • Supports all Windows NT 4.0 (and beyond) systems.
  • The module is extremely small and provides access to the entire API.

Installation:

$ npm install @phtdacosta/windows-shortcut-maker --save

Basic usage:

// Requires the Windows Shortcut Maker module
const sm = require('windows-shortcut-maker')

// Creates an object to store any and all parameters to be passed to the Windows API
const options = {
    'filepath': 'C:\\Program Files\\GIMP 2\\bin\\gimp-2.8.exe'
}

// It creates a "GIMP" shortcut file in the desktop
try {
    sm.makeSync(options)
} catch (error) {
    console.log(error)
}

Documentation

makeSync(options)

Returns void after synchronously executing the wrapped script which makes the Windows API calls or an Error if no valid filepath parameter property was previously specified.

options is an Object that organizedly stores the properties used by the function. Each one is covered below.

options.filepath is the absolute path including the name of which file should the module make a shortcut. It is required for the function to work.

Optional: options.lnkName is the name given for the new shortcut file which obeys the same name rules as a regular file does.

Optional: options.lnkArgs are the arguments passed to the original file when the new shortcut is executed.

Optional: options.lnkDes is the description message shown when the cursor stands over the new shortcut without clicking it.

Optional: options.lnkCwd is the absolute path to which folder the original file should start executing.

Optional: options.lnkIco is the absolute path to an .ico extension image used as the icon for the new shortcut.

Optional: options.lnkWin is the initial window mode adopted by the original file when executed. (e.g. 3 is maximized, 4 is normal and 7 is minimized)

Optional: options.lnkHtk is the key combination that is going to trigger the new shortcut execution. (e.g. 'ALT+CTRL+F')

License

This project exists under the GPL-3.0 license.

Development

  1. Add an asynchronous function version of makeSync.
  2. Let developers to make shortcuts anywhere.
  3. Add support for making internet shortcuts.

windows-shortcut-maker's People

Contributors

phtdacosta avatar pixelport avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.