node-main
Provides useful tools for writing command line scripts. It also ensures that a block of code is only invoked when called directly (as in calling node script
). It will not call the block of code if the script has been required in another module (as in require('script')
).
Bare bones example:
#!/usr/bin/env node
require('main')(module).run(function(argv, scriptTools) {
scriptTools.exit('running this as a script!');
});
Installation & Usage
npm install --save main
require('main')(module)
Once required, you can chain the functions below.
Note that the module
part is required. This is to properly allow nesting of modules. e.g.
script1
contains require('main')(module)
script2
requires script1
, and implements it's own require('main')(module)
.
We expect that when running script2
from the command line that it will only call the main function of script2
, and not call the main function of script1
.
For the time being, this is required until I or someone else figures out a way around it. Read the caching section of the Node Modules API for more information.
.usage(message)
An optional message to append to the top of flags that can describe how the script should be invoked, e.g.
Usage: ./script [flags] <posArg1> <posArg2>
Flags do not have to be specified in this string. Usage for flags are automatically generated based on the options provided (see below) and will appear after this usage message.
.flags(options)
options
follows the optimist format for options, but groups them together, e.g.:
require('main')(module).flags({
f: { alias: 'flag' },
t: { alias: 'secondFlag' },
d: { demand: true },
})
.run(fn)
fn
is the callback that will be invoked when the script is ran directly from a terminal. It can take the following parameters:
fn(argv, scriptTools)
argv
is the parsed optimist argv objectscriptTools
is a helper that provides tools for working with the command line. See below for it's usage.
Script Tools
When invoking .run()
, you will have access to the argv and the script tools in it's callback function. These tools allow you to perform short hand for repetitive tasks that come up when working with command line scripts.
In the documentation below, the $
symbol stands for the script tool helper function.
$.help
A variable holding the help message that was generated from the usage & any flags provided.
$.exit([exitCode], [printThis])
Exits the running program with the specified exit code and an optional output (printThis
can be an object, string, error, etc). It will write to stdout if the exitCode is 0 (default), or stderr if the exitCode != 0.
Some examples:
$.exit();
$.exit('done!');
$.exit(0, 'done!');
$.exit(0, 1);
$.exit(1);
$.exit(127, 'command not found!');
$.exit(1, new Error('foo'));
$.readIn(callback)
Read from stdin in it's entirety, and return a string once finished. Do not use this if you are dealing with large amounts of data from stdin.
$.readIn(function(input) { $.out(input); });
Output Helpers
$.out(something)
and $.cout(something)
Write something to standard output. $.out
using process.stdout.write
and cout
uses console.log
.
$.err(something)
and $.cerr(something)
Write something to standard output. $.err
using process.stderr.write
and $.cerr
uses console.error
.
Example
To view more examples visit the examples
directory.
Refer to the following script as basic.js
#!/usr/bin/env node
exports.sentence = function(name, word1, word2) {
return name + ', ' + word1 + ' ' + word2 + '.';
};
require('../index')(module)
.usage('Usage:\n node test.js [flags] <word1> <word2>')
.flags({
n: { alias: 'name', demand: true }
})
.run(function(argv, $) {
if (argv._.length !== 2) { $.exit(1, $.help); }
var word1 = argv._[0],
word2 = argv._[1];
var sentence = exports.sentence(argv.name, word1, word2);
$.exit(sentence);
});
Using the module from another script will not execute the code in main:
var basic = require('./basic');
console.log(basic.sentence('Nolan', 'sit', 'down'));
Running from the terminal ($? indicates exit status):
> node basic.js --name Nolan sit down
Nolan, sit down.
> $?
0 (success)
> node basic.js
> $?
1 (failure)
Note
When installing, make sure to use the --save
option and/or specify the version in your package.json
dependencies. This package is undergoing some heavy changes at the moment and new versions may be radically different from previous releases. This type of business will stop once it reaches 0.1.0.