bestapps

1.1.3-1 • Public • Published

Bestapps

Check dev apps list by community in your computer

If you are on new mac and want some dev env, this is great little tool for you

bestapps

Install

$ npm install -g bestapps

Usage

In console/terminal just run command

bapp

Contribute

If you want to add some app, fork repo and make pull request

Code structure for adding app

Your-app.js into folder apps - nothing more

const chalk = require('chalk');
const fs = require('fs');
 
fs.access('/Applications/Your-App.app', fs.F_OK, function (err) {
  if(!err) {
    console.log(chalk.green('App is installed on your computer!'));
  } else {
    console.log(chalk.red('App is not installed on your computer! ' + chalk.white('app-url')));
  }
});

License

MIT © rampouchee

/bestapps/

    Package Sidebar

    Install

    npm i bestapps

    Weekly Downloads

    1

    Version

    1.1.3-1

    License

    MIT

    Last publish

    Collaborators

    • rampouchee