Not sure if this is what you mean, commanderjs has `#command` which mimics 
git like sub commands. For example if my main script is 'foo', I can create 
'foo-bar', 'foo-baz' scripts. To use them in commander

### foo

program
  .command('bar', 'spawn foo-bar')
  .command('baz', 'spawn foo-baz')
  .parse(process.argv)

On Friday, July 12, 2013 9:05:50 AM UTC-7, VRao wrote:
>
> I can do simple command line parsing. However I want to build a nested 
> command line hierarchy store in  in a stack and execute them. Is there some 
> kind of node.js package./script readily available? If not, can I get 
> suggestions.

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to