Giter VIP home page Giter VIP logo

Comments (2)

Rmannn avatar Rmannn commented on May 30, 2024 1

If the @Console is used without a name, that means you are registering a command on the root cli.

You can't define global options for the root cli using decorators. (the root cli is already defined)
You have to define options programmatically using the ConsoleService.

Inject the console service in your provider, then define an option on the rootCli.
You can find documentation about global options here :
https://github.com/Pop-Code/nestjs-console/wiki/Command-handler-signature#how-to-define-options-and-global-options

import { ConsoleService } from 'nestjs-console';

@Injectable()
class MyService {
    constructor(console: ConsoleService){
        const rootCli = console.getRootCli();
        rootCli.option('-v,--version', 'The description of the option');
    }
} 

However, a global option is not a good idea since you will have to handle this option in each command handler.

Commander (npm) already provides a way to print the version.
See https://www.npmjs.com/package/commander#version-option.

import { ConsoleService } from 'nestjs-console';

@Injectable()
class MyService {
    constructor(console: ConsoleService){
        const rootCli = console.getRootCli();
        rootCli.version('0.0.1', '-v, --version', 'output the current version');
    }
} 

from nestjs-console.

samdidos avatar samdidos commented on May 30, 2024 1

Thank you! That solved it neatly 😄

from nestjs-console.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.