Gathering detailed insights and metrics for @gnutzmann/nest-commander
Gathering detailed insights and metrics for @gnutzmann/nest-commander
Gathering detailed insights and metrics for @gnutzmann/nest-commander
Gathering detailed insights and metrics for @gnutzmann/nest-commander
A module for using NestJS to build up CLI applications
npm install @gnutzmann/nest-commander
Typescript
Module System
Node Version
NPM Version
nest-commander@3.17.0
Updated on Mar 14, 2025
nest-commander@3.16.1
Updated on Feb 28, 2025
nest-commander-testing@3.4.0
Updated on Jan 27, 2025
nest-commander-schematics@3.1.0
Updated on Jan 27, 2025
nest-commander@3.16.0
Updated on Jan 27, 2025
nest-commander-schematics@3.0.2
Updated on Oct 07, 2024
TypeScript (73.63%)
Astro (13.32%)
CSS (9.38%)
JavaScript (3.41%)
Shell (0.26%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
462 Stars
1,345 Commits
57 Forks
5 Watchers
17 Branches
34 Contributors
Updated on Jul 02, 2025
Latest Version
2.5.1
Package Id
@gnutzmann/nest-commander@2.5.1
Unpacked Size
70.47 kB
Size
18.65 kB
File Count
36
NPM Version
8.19.2
Node Version
18.12.1
Published on
May 05, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
3
Have you been building amazing REST and RPC applications with NestJS? Do you want that same structure for absolutely everything you're working with? Have you always wanted to build up some sweet CLI application but don't really know where to start? This is the solution. A package to bring building CLI applications to the Nest world with the same structure that you already know and love :heart: Built on top of the popular Commander package.
Before you get started, you'll need to install a few packages. First and foremost, this one: nest-commander
(name pending). You'll also need to install @nestjs/common
and @nestjs/core
as this package makes use of them under the hood, but doesn't want to tie you down to a specific version, yay peerDependencies!
1npm i nest-commander @nestjs/common @nestjs/core 2# OR 3yarn add nest-commander @nestjs/common @nestjs/core 4# OR 5pnpm i nest-commander @nestjs/common @nestjs/core
nest-commander
makes it easy to write new command line applications with decorators via the @Command()
decorator for classes and the @Option()
decorator for methods of that class. Every command file should implement the CommandRunner
interface and should be decorated with a @Command()
decorator.
Every command is seen as an @Injectable()
by Nest, so your normal Dependency Injection still works as you would expect it to (woohoo!). The only thing to take note of is the interface CommandRunner
, which should be implemented by each command. The CommandRunner
interface ensures that all commands have a run
method that return a Promise<void>
and takes in the parameters string[], Record<string, any>
. The run
command is where you can kick all of your logic off from, it will take in whatever parameters did not match option flags and pass them in as an array, just in case you are really meaning to work with multiple parameters. As for the options, the Record<string, any>
, the names of these properties match the name
property given to the @Option()
decorators, while their value matches the return of the option handler. If you'd like better type safety, you are welcome to create an interface for your options as well. You can view how the Basic Command test manages that if interested.
The @Command()
decorator is to define what CLI command the class is going to manage and take care of. The decorator takes in an object to define properties of the command. The options passed here would be the same as the options passed to a new command
for Commander
property | type | required | description |
---|---|---|---|
name | string | true | the name of the command |
arguments | string | false | Named arguments for the command to work with. These can be required <> or optional [] , but do not map to an option like a flag does |
description | string | false | the description of the command. This will be used by the --help or -h flags to have a formalized way of what to print out |
argsDescription | Record<string, string> | false | An object containing the description of each argument. This will be used by -h or --help |
Options | CommandOptions | false | Extra options to pass on down to commander |
For mor information on the @Command()
and @Option()
parameters, check out the Commander docs.
Often times you're not just running a single command with a single input, but rather you're running a command with multiple options and flags. Think of something like git commit
: you can pass a --amend
flag, a -m
flag, or even -a
, all of these change how the command runs. These flags are able to be set for each command using the @Option()
decorator on a method for how that flag should be parsed. Do note that every command sent in via the command line is a raw string, so if you need to transform that string to a number or a boolean, or any other type, this handler is where it can be done. See the putting it all together for an example. The @Option()
decorator, like the @Command()
one, takes in an object of options defined in the table below
property | type | required | description |
---|---|---|---|
flags | string | true | a string that represents the option's incoming flag and if the option is required (using <>) or optional (using []) |
description | string | false | the description of the option, used if adding a --help flag |
defaultValue | string or boolean | false | the default value for the flag |
Under the hood, the method that the@Option()
is decorating is the custom parser passed to commander for how the value should be parsed. This means if you want to parse a boolean value, the best way to do so would be to use JSON.parse(val)
as Boolean('false')
actually returns true
instead of the expected false
.
nest-commander also can integrate with inquirer
to allow for user input during your CLI run. I tried to keep this integration as smooth as possible, but there are some caveats to watch for:
A class decorated with @QuestionSet()
is a class that represents a related set of questions. Looking at inquirer's own examples, this could be like the pizza example. There's nothing too special about this decorator, all it does is allow the underlying engine to find the appropriate question set when it is needed. The @QuestionSet()
decorator takes an object of options defined below
property | type | required | description |
---|---|---|---|
name | string | true | The name that will be used by the InquirerService when getting a prompt to run. |
Here's where the options start to open up. Each @Question()
should decorate a class method. This method will essentially become the filter
property for inquirer
. If you don't need any filtering done, simply return the value that comes into the method. All of the other properties come from, and adhere to the types of, Inquirer
and their documentation can better illustrate what values are needed when and where.
With Inquirer, several of the properties can have functions instead of simple types. For these properties, you can do one of two things: 1) pass the function to the decorator or 2) use the @*For()
^ decorator. Each @*For()
decorator takes in an object similar to the @Question()
decorator as described below
property | type | required | description |
---|---|---|---|
name | string | true | The name that will be used to determine which @Question() this decorator belongs to. |
@Question()
decoratorBelow is an example of using the validate
method in the @Question()
decorator
1@Question({ 2 type: 'input', 3 name: 'phone', 4 message: "What's your phone number?", 5 validate: function(value: string) { 6 const pass = value.match( 7 /^([01]{1})?[-.\s]?\(?(\d{3})\)?[-.\s]?(\d{3})[-.\s]?(\d{4})\s?((?:#|ext\.?\s?|x\.?\s?){1}(?:\d+)?)?$/i, 8 ); 9 if (pass) { 10 return true; 11 } 12 return 'Please enter a valid phone number'; 13 } 14}) 15parsePhone(val: string) { 16 return val; 17}
@*For()
decoratorBelow is an example of a @Question()
and @ValidateFor()
decorator in use
1@Question({ 2 type: 'input', 3 name: 'phone', 4 message: "What's your phone number?", 5}) 6parsePhone(val: string) { 7 return val; 8} 9 10@ValidateFor({ name: 'phone' }) 11validatePhone(value: string) { 12 const pass = value.match( 13 /^([01]{1})?[-.\s]?\(?(\d{3})\)?[-.\s]?(\d{3})[-.\s]?(\d{4})\s?((?:#|ext\.?\s?|x\.?\s?){1}(?:\d+)?)?$/i, 14 ); 15 if (pass) { 16 return true; 17 } 18 19 return 'Please enter a valid phone number'; 20}
As you can see, the name
of both @Question()
and @ValidateFor()
align, allowing the underlying engine to properly map the validatePhone
method to the phone
's property set.
^ Please note that @*For()
is shorthand for @ValidateFor()
, @ChoicesFor()
, @MessageFor()
, @DefaultFor()
, and @WhenFor()
.
The InquirerService
is an injectable provider that allows you to call inquirer for a specific set of questions (named with @QuestionSet()
). When calling the question set, you can pass in the already obtained options as well, and inquirer will skip over the options that are already answered, unless the askAnswered
property is set to true
as mentioned in their docs. You can use either InquirerService#ask
or InquirerService#prompt
, as they are aliases for each other. The return from the InquirerService#prompt
method is the non-partial variant of the options passed in; in other words, the return is the answers that the user provided, mapping appropriately in the cases where necessary, such as lists. For an example usage, please check the pizza integration test.
Similar to how in a NestJS application we can use the NestFactory
to create a server for us, and run it using listen
, the nest-commander
package exposes a simple to use API to run your server. Import the CommandFactory
and use the static
method run
and pass in the root module of your application. This would probably look like below
1import { CommandFactory } from 'nest-commander'; 2import { AppModule } from './app.module'; 3 4async function bootstrap() { 5 await CommandFactory.run(AppModule); 6} 7 8bootstrap();
And that's it. Under the hood, CommandFactory
will worry about calling NestFactory
for you and calling app.close()
when necessary, so you shouldn't need to worry about memory leaks there. If you need to add in some error handling, there's always try/catch
wrapping the run
command, or you can chain on some .catch()
method to the bootstrap()
call.
By default, nest-commander
does not add in any error handling, other that the default that commander
itself does. If you would like to use commander's exitOverride
you can pass an errorHandler
property to the options
object of the CommandFactory.run
method. This error handler should take in an error object, and return void.
1import { CommandFactory } from 'nest-commander'; 2import { AppModule } from './app.module'; 3 4async function bootstrap() { 5 await CommandFactory.run(AppModule, { 6 errorHandler: (err) => { 7 console.error(err); 8 process.exit(1); // this could also be a 0 depending on how you want to handle the exit code 9 } 10 }); 11} 12 13bootstrap();
There is a testing helper package called nest-commander-testing
that works very similarly to @nestjs/testing
. Check out it's documentation and examples for help.
The following class would equate to having a CLI command that can take in the subcommand basic
or be called directly, with -n
, -s
, and -b
(along with their long flags) all being supported and with custom parsers for each option. The --help
flag is also supported, as is customary with commander.
1import { Command, CommandRunner, Option } from 'nest-commander';
2import { LogService } from './log.service';
3
4interface BasicCommandOptions {
5 string?: string;
6 boolean?: boolean;
7 number?: number;
8}
9
10@Command({ name: 'basic', description: 'A parameter parse' })
11export class BasicCommand implements CommandRunner {
12 constructor(private readonly logService: LogService) {}
13
14 async run(
15 passedParam: string[],
16 options?: BasicCommandOptions
17 ): Promise<void> {
18 if (options?.boolean !== undefined && options?.boolean !== null) {
19 this.runWithBoolean(passedParam, options.boolean);
20 } else if (options?.number) {
21 this.runWithNumber(passedParam, options.number);
22 } else if (options?.string) {
23 this.runWithString(passedParam, options.string);
24 } else {
25 this.runWithNone(passedParam);
26 }
27 }
28
29 @Option({
30 flags: '-n, --number [number]',
31 description: 'A basic number parser'
32 })
33 parseNumber(val: string): number {
34 return Number(val);
35 }
36
37 @Option({
38 flags: '-s, --string [string]',
39 description: 'A string return'
40 })
41 parseString(val: string): string {
42 return val;
43 }
44
45 @Option({
46 flags: '-b, --boolean [boolean]',
47 description: 'A boolean parser'
48 })
49 parseBoolean(val: string): boolean {
50 return JSON.parse(val);
51 }
52
53 runWithString(param: string[], option: string): void {
54 this.logService.log({ param, string: option });
55 }
56
57 runWithNumber(param: string[], option: number): void {
58 this.logService.log({ param, number: option });
59 }
60
61 runWithBoolean(param: string[], option: boolean): void {
62 this.logService.log({ param, boolean: option });
63 }
64
65 runWithNone(param: string[]): void {
66 this.logService.log({ param });
67 }
68}
Make sure the command class is added to a module
1@Module({ 2 providers: [LogService, BasicCommand] 3}) 4export class AppModule {}
And now to be able to run the CLI in your main.ts you can do the following
1async function bootstrap() { 2 await CommandFactory.run(AppModule); 3} 4 5bootstrap();
And just like that, you've got a command line application. All that's left is to run your build command (usually nest build
) and run start like normal (node dist/main
). If you're looking to package the command line app for other devs consumption (making somethng like the @nestjs/cli
or jest
), then you can add the bin
property to the package.json
and map the command appropriately.
No vulnerabilities found.
No security vulnerabilities found.