import { App } from '@deepkit/app'; const app = new App(); app.command('hello', () => { console.log('Hello World!'); }); app.run();
./node_modules/.bin/ts-node app.ts hello
import { App } from '@deepkit/app'; const app = new App(); app.command('hello', () => { console.log('Hello World!'); }); app.run();
./node_modules/.bin/ts-node app.ts hello