GithubHelp home page GithubHelp logo

auditboard-cli's Introduction

Auditboard Cli

ab basic

Installation

$ yarn add auditboard-cli

$ npm install auditboard-cli

Make sure your projects node_modules/.bin is in your path.

$ export PATH=$PATH:$PWD/node_modules/.bin

Why this CLI?

auditboard-cli is a cli that you can drop into any node project (>=v10) and automate anything you can write code for. Inspired by Rake and Artisan to help support developers maximise productivity. The commands you create live in the repo you install auditboard-cli in <YOUR PROJECT ROOT>/ab-cli-commands. We also support global creation of commands which live in ~/.ab-cli-commands. If you want to delete a command just delete that file.

Basic Usage

First thing to do when you get up and running is use the make:command (you can pass a -g or --global to the make command to install globally).

ab make command

Now open the command file that was created.

module.exports = {
	/**
	 * args get defined by the commandOptions interface below
	 * {
	 *   "firstParam": "users", <-- required params
	 *   "options": 11 <-- optional params
	 * }
	 */
	async command(args) {
		console.log("HELLO WORLD From my new command", args);
		return "Return a message and the cli will log it!";
	},
	commandOptions: {
		help: "This help string supports markdown!",
		description: "This is your command short description",
		required: [
			/**
			 * This is where you put required params
			 * arguments are parsed sequentially
			 * example: ./auditboard make:command users -o 11
			 *
			 * This segment is how it got to this 
			 */
			{
				name: "firstParam", // <-- this value will be users
				message: 'Something went wrong...', // <-- (optional) failure message if param does not exist
			},
			// ... more required params
		],
		args: {
			// these are optional parameters
			// https://www.npmjs.com/package/args
			'--option': Number,
			'-o': '--option',
		}
	}
};

Command API

make:command creates the above example let's walk through the interface.

command

  async command(args) {
    console.log("HELLO WORLD From my new command", args);
    return "Return a message and the cli will log it!";
  },

This is the function that gets executed. If you want a custom message to display on command completion return a string

commandOptions

  • help
    • The message that gets displayed when a user runs help(supports markdown):
    $ auditboard help <your awesome command>
    
  • description
    • The description that displays when you run list
  • required
    • An array of parameter objects that are required to run your command. The engine does the validation.
      required: [
        /**
          * This is where you put required params
          * arguments are parsed sequentially
          * example: ./auditboard make:command users -o 11
          *
          * This segment is how it got to this 
          */
        {
          name: "firstParam", // <-- this value will be users
          message: 'Something went wrong...', // <-- (optional) failure message if param does not exist
        },
        // ... more required params
      ],
  • args
    • We leveraged the open source communuty for parsing optional arguments (you will be responsible for checking if they exist in your command function). See Args docs

Argument injection

Arguments (both optional and required) are injected into the command function. Keyed by name (for optional parms we remove --)

Our make command, for example, has required and optional arguments Required:

{
  name: "commandName",
  message: 'You need a command name to create a command... duh',
},

Optional:

args: {
  "--global": Boolean,
  "-g": "--global"
}

We run the command...

$ auditboard make:command mynew:command -g

Inside the command function the arguments are

async command(args) {
  // args.commandName => mynew:command
  // args.global => true
  ...
}

Contributing

Feel free to create issues and open pull requests!

License

MIT (AuditBoard <3 Open Source)

auditboard-cli's People

Contributors

galnoy avatar portnumber53 avatar zimmermanw84 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.