0.2.1 • Published 7 years ago

os-apps v0.2.1

Weekly downloads
2
License
MIT
Repository
-
Last release
7 years ago

os-apps

Travis Coveralls branch license

Retrieve apps available on your OS.

Install

$ npm install --save os-apps

Usage

const osApps = require('os-apps');

osApps.getAll().then(apps => {
  // array of apps...
  apps.forEach(app => {
    console.log(app);
  });
})

API

getAll(useType)

Returns a Promise with all paths to all apps.

useType

Type: String

Default: system

Options: user, system

The use type.

getAppsInDirectory(dir)

Returns a Promise with paths to all apps in the given directory.

dir

Type: String

The directory to read

License

MIT © Vu Tran