bestapps
v1.1.3-1
Published
Check best dev apps added by community
Maintainers
Readme
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
Install
$ npm install -g bestappsUsage
In console/terminal just run command
bappContribute
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
