You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
letprogram=require('commander');program.version('0.0.1')program.command('hi').description('initialize project configuration').action(function(){console.log('Hi my Friend!!!');});program.command('bye [name]').description('initialize project configuration').action(function(name){console.log('Bye '+name+'. It was good to see you!');});program.command('*').action(function(env){console.log('Enter a Valid command');terminate(true);});program.parse(process.argv);