1.6.1 • Published 3 years ago

ifopt v1.6.1

Weekly downloads
49
License
-
Repository
-
Last release
3 years ago

ifopt ReadMe

ifopt is my own Command Line Interface options parser with some other feature. During a project where I developed a simple script, I need to add some option to change the behavior. I use NodeJS options and parse them as like PHP perform.

So, finaly I created ifopt to reuse it event if cli lib already exist.

Summary

How to use it

Installation of ifopt

  • Go into the root of your project
  • Type the following command : npm install ifopt :
    • That will creates a package.json file, or add it as dependency.

Load ifopt object

  • Once ifopt installed, load it as following :
const opt = require('ifopt');

ifopt mains functionnalities

In the world of Command Line Interface options, there is two kind of options :

  • The short options which begins with one dash (-).
  • The long options which begins with two dashes (--).

I created a third kind of option : the implicits ones. All elements put behind the command are an option.

For instance, in this command find text -v --output=file.txt, text is also an option as -v and --output are. implicits option are identified with their position, without taking account of short & long option :

  • find text -v --output=file.txt
  • find -v text --output=file.txt
  • find -v --output=file.txt text

Herebefore, text is always the first implicit option.

ifopt only parse options. Using returned option is in your hand. You can decide to use implicit, sort and long option for the same information (Eg: input file) .

An option CAN HAVE (::), MUST HAVE (:) or NOT () a value. It's possible to set the expected behavior regarding the option. ifopt will warn the user when the option not fullfill the requirement.

Parse NodeJS options

ifopt offers differents ways to set and get NodeJS options. The simpliest way is to get options is parse them directly using your options configuration :

const opt = require('ifopt');

// Declaration of option which will be manage by ifopt :
const myOptions = {
    shortopt: "hd:o::",
    longopt: [
        "help",     // short is h (NOT  HAVE a value)
        "dir:" ,    // short is d (MUST HAVE a value) 
        "output::"  // short is o (CAN  HAVE a value)
    ]
}

let parsedOption = opt.getopt(
    myOptions.shortopt,
    myOptions.longopt
);

The following execution with this command will return for parsedOption :

myCommand -d=test -o --unwantedoption
{
  d: { arg: '-d=test', opt: 'd', val: 'test' },
  o: { arg: '-o', opt: 'o', val: null }
}

You can separately configure ifopt :

const opt = require('ifopt');

// Set Short Options
opt.setShortOpt("hd:o::");
// Set Long Options
opt.setLongOpt([
    "help",     // short is h (NOT  HAVE a value)
    "dir:" ,    // short is d (MUST HAVE a value) 
    "output::"  // short is o (CAN  HAVE a value)
]);

let parsedOption = opt.getopt();

Which will produce the same result :

{
  d: { arg: '-d=test', opt: 'd', val: 'test' },
  o: { arg: '-o', opt: 'o', val: null }
}

Another way is to use setOpts :

const opt = require('ifopt');

// Set Short Options
opt.setOpts(
    // Short Ones
    "hd:o::", 
    // Long Ones
    [
        "help",     // short is h (NOT  HAVE a value)
        "dir:" ,    // short is d (MUST HAVE a value) 
        "output::"  // short is o (CAN  HAVE a value)
    ]
);

let parsedOption = opt.getopt();

Focus on implicits

Please find below how to handle implicits options for the following command :

myCommand myInputFile --dir=test myOutputFile 
const opt = require('ifopt');

// Declaration of option which will be manage by ifopt :
const myOptions = {
    shortopt: "hd:o::i:",
    longopt: [
        "help",     // short is h (NOT  HAVE a value)
        "dir:" ,    // short is d (MUST HAVE a value)
        "input:" ,  // short is d (MUST HAVE a value)
        "output::"  // short is o (CAN  HAVE a value)
    ]
}

let implicitsHandler = {
    implicitOneForInput : null,
    implicitTwoForOutput: null
}

// Parse command line arguments
let parsedOption = opt.getopt(
    myOptions.shortopt,                                         // Short Options
    myOptions.longopt,                                             // Long  Options
    ['implicitOneForInput', 'implicitTwoForOutput'],    // Implicits Order for Handler
    implicitsHandler                                            // Implicits Handler to get Data by Ref
);

// Result of command : myCommand myInputFile --dir=test myOutputFile
console.log(parsedOption);
console.log(implicitsHandler);

will return :

{ dir: { arg: '--dir=test', opt: 'dir', val: 'test' } }
{
  implicitOneForInput: 'myInputFile',
  implicitTwoForOutput: 'myOutputFile'
}

So you can also pass implicit order and handler for method setOpts :

let implicitsHandler = {
    implicitOneForInput : null,
    implicitTwoForOutput: null
}

opt.setOpts(
    // Short Ones
    "hd:o::",
    // Long Ones
    [
        "help",     // short is h (NOT  HAVE a value)
        "dir:" ,    // short is d (MUST HAVE a value)
        "output::"  // short is o (CAN  HAVE a value)
    ],
    // Implicits Orders
    ['implicitOneForInput', 'implicitTwoForOutput'],
    // Implicits Handler
    implicitsHandler
);

You can also set implicits separately :

let implicitsHandler = {
    implicitOneForInput : null,
    implicitTwoForOutput: null
}

// Set Implicits
opt.setImplicitOpt(
    ['implicitOneForInput', 'implicitTwoForOutput'],
    implicitsHandler
)

Check Option (isOption())

Once you have parsed arguments from your command line, you have to developped your logique and your function to perform processing.

Sometime, you want to check if an option have been correctly passed.

Instead of checking in parsedOptions get from getopt, you can directly use method isOption() which can check one or more options at once. Done like this, you are checking for one option which can be provided in long or short version :

if (opt.isOption(['dir','d'])) {
    console.log("Directory is provided")
} else {
    console.log("Directory is NOT provided")
}

If you want to combine availability of two or more options you can change the operator :

if (opt.isOption(['d','i'], 'and')
) {
    console.log("Directory AND input are provided")
} else {
    console.log("Directory OR input NOT provided")
}

Get Option Value (getOptValue())

Once again, to prevent you to get value in parsedOptions, you can use method getOptValue :

let directory = opt.getOptValue(['dir', 'd']);

The herebefore statement will return the value of the first option found. It's very usefull to get value independantly of the short and long option. Done like this, longs options have the priority over shorts ones.

For command :

myCommand -d=test --dir=test2

directory will be equal to test2 (--dir=test2)

Get Option ValueS (getOptsValues())

This version will return an array of values for provided options :

let files = opt.getOptsValues(['input', 'i']);

For command :

myCommand -i=file_1 --input=file_2 -i=file_3

files is equal to [ 'file_2', 'file_1', 'file_3' ]

Log in STDOUT (log())

ifopt provides a method to send message in STDOUT nammed log().

By default, this command will generate a message like this in the console using colors :

[ <level> ] : <message>

Below, the argument of method log :

  • String, message, Message to display.
  • Number, level, Level of the message. 0=SUCCESS,1=ERROR,2=WARNING,3=INFO,4=DEBUG.
  • Array, args Arguments which will replace placeholder (%s) in message.
const log = opt.log;
// Considering provided option "i" was equal to "<yourFile>"
log("File %s not found", 1, [opt.getOptValue("i")]);

The herebefore statement will log the message :

[ ERROR ] : File <yourFile> not found

ifopt have five default logging level which are following :

LevelNameColorReturn Code
0SUCCESSGreen0
1ERRORRed1
2WARNINGYellow0
3INFOTeal0
4DEBUGOrange0

Smart Logging for your VERBOSE & DEBUG modes

To increase your code readability by avoiding following code, you can configure log() behavior creating display rules using method setLogLevel(String groupName [, Boolean groupEnabled [, Array levels]]).

const opt = require('ifopt');
const log = opt.log;

let VERBOSE = false;
let DEBUG   = false;


// Declaration of option which will be manage by ifopt :
const myOptions = {
    shortopt: "Dv",
    longopt: [
        "debug",
        "verbose"
    ]
};

let parsedOption = opt.getopt(
    myOptions.shortopt,
    myOptions.longopt
);

// Set to true when option 'verbose' is used
if (opt.isOption(['verbose', 'v'])) VERBOSE = true;
// Set to true when option 'debug' is used
if (opt.isOption(['debug', 'D'])) DEBUG = true;


if(VERBOSE){
    // level 3 = INFO
    log("Your INFO message here with params %s", 3, ['myParam']);
}
if(DEBUG){
    // level 4 = DEBUG
    log("Your DEBUG message here with params %s", 4, ['myParam'])
}

Herebefore code can be rewrited with :

const opt = require('ifopt');
const log = opt.log;

// Declaration of option which will be manage by ifopt :
const myOptions = {
    shortopt: "Dv",
    longopt: [
        "debug",
        "verbose"
    ]
}

let parsedOption = opt.getopt(
    myOptions.shortopt,
    myOptions.longopt
);

// All "INFO" will not displayed by default
// (only if log() argument ignoreSmartLog is true)
opt.setLogLevel('VERBOSE', false, [3]);

// All "DEBUG" will not displayed by default
// (only if log() argument ignoreSmartLog is true)
opt.setLogLevel('DEBUG', false, [4]);

// Set to true when option 'verbose' is used
if (opt.isOption(['verbose', 'v'])) opt.setLogLevel('VERBOSE', true);
// Set to true when option 'debug' is used
if (opt.isOption(['debug', 'D'])) opt.setLogLevel('DEBUG', true);

// Now you can simply use everywhere the following call :
log("Your INFO message here with params %s", 3, ['myParam']);
log("Your DEBUG message here with params %s", 4, ['myParam']);

If you need to display a message which level number is under rule which currently is disabled, you can force the display like this :

//---------------------------------------------------------▼▼▼▼--
log("You disabled INFO message will alway display", 3, [], true);

Create your own logging level

ifopt have five default logging level which are following :

LevelNameColorReturn Code
0SUCCESSGreen0
1ERRORRed1
2WARNINGYellow0
3INFOTeal0
4DEBUGOrange0

If you need more logging level or modify existing one, you can use the following method :

createLogLevel(number level, string name [, string color [,number lreturn]);

Please find below a complete example to handle three level of verbose mode.

// cf : test/docs_009.js
const opt = require('../ifopt');
const log = opt.log;

// Declaration of option which will be manage by ifopt :
const myOptions = {
    shortopt: "Dv",
    longopt: [
        "debug",
        "v",
        "vv",
        "vvv"
    ]
};

let parsedOption = opt.getopt(
    myOptions.shortopt,
    myOptions.longopt
);

// Create 3 Verbose level info message :
opt.createLogLevel(5, 'INFO N-1', 'fg.Info', 0);
opt.createLogLevel(6, 'INFO N-2', 'fg.Info', 0);
opt.createLogLevel(7, 'INFO N-3', 'fg.Info', 0);

// Set login level rule
opt.setLogLevel('INFO_N-1', false, [5]);
opt.setLogLevel('INFO_N-2', false, [6]);
opt.setLogLevel('INFO_N-3', false, [7]);

// Read options
if (opt.isOption(['v', 'vv', 'vvv'])) {
    opt.setLogLevel('INFO_N-1', true);
}
if (opt.isOption(['vv', 'vvv'])) {
    opt.setLogLevel('INFO_N-2', true);
}
if (opt.isOption(['vvv'])) {
    opt.setLogLevel('INFO_N-3', true);
}


log("Message always displayed", 3);
log("Message only displayed with option %s, %s, %s or %s", 5, ['-v', '--v', '--vv', '--vvv']);
log("Message only displayed with option %s or %s", 6, ['--vv', '--vvv']);
log("Message only displayed with option %s", 7, ['--vvv']);

Enabling / Disabling Colors

When you redirect you output to file, you do not want control char in your log file.

So, to prevent specials char, you can easily disable colors.

Simply call method noColor() to turn off color in method log().

opt.noColor();
// Or like this
opt.useColor(false);

To turn on the color :

opt.useColor();
// Or
opt.useColor(true);

Managing colors

Get default colors (getColors())

Get one color (getColor())

Update colors (setColors())

Update one color (setColor())

1.6.1

3 years ago

1.6.0

4 years ago

1.5.0

4 years ago

1.4.1

4 years ago

1.4.0

4 years ago

1.3.0

4 years ago

1.2.0

4 years ago

1.2.1

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago