'How to use commander to generate command

I am working on a cli tool with commander. I have this app.ts file.

import { Command } from 'commander';
const program = new Command();
program.version('0.0.1');

const zoneConf = program.command('zone-conf');
const generate = zoneConf.command('generate');
generate.command('tx-commands').action(() => {
    console.log('Ran `zone-conf generate tx-commands`');
});

program.parse(process.argv);

I expect that when I run tsc && node app.js, I would be able to do run a command like zone-conf generate tx-commands. When I do run it the output is zsh: command not found: zone-conf.

Is therw a step I am missing with commander in nodejs.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source