Giter VIP home page Giter VIP logo

Comments (3)

Rmannn avatar Rmannn commented on May 30, 2024

With npm commander package you can use arguments and options.
Options must not be specified in the command string, only arguments must be specified in the command string.

Regarding the way you want to invoke your function, you could use only options instead of arguments.

this.consoleService.createCommand(
    {
    command: 'create-user',
    description: 'create an organization',
    options: [
        {
        flags: '-n, --name',
        description: 'name of person',
        },
        {
        flags: '-e, --email',
        description:
            'email of person',
        },
        {
        flags: '-h, --height',
        description: 'height of person,
        },
        {
        flags: '-w, --weight',
        description: 'weight of person',
        },
    ],
    },
    DatabaseService.prototype.createUser.bind(this),
    cli, // attach the command to the cli
);

In database service createUser method you can get options the following way:

import * as commander from 'commander';
...
// in your class method
createUser = async (command: commander.Command) => {
    // get all options from command
    const options = command.opts();
    console.log(options.name, options.email, options.height, options.weight);
} 

If you use command argument instead options like this command: 'create-user <arg1> <arg2>',
You can get arguments from parameters of the binded method.

import * as commander from 'commander';
...
// in your class method
createUser = async (arg1: any, arg2: any, command: commander.Command) => {
  const options = command.opts();
} 

I know that the signature of the command handler must be documented, it's in the scope of the next release.

async handler(arg1: any, arg2: any, ...argN: any[], command: commander.Command): Promise<any> | any

invoke like thid
npm run console -- create-user -n adi -e [email protected] -w 180 - h 200

Warning, actually options are optional. Required options will be added in next release.
If you need to force required options, use arguments with <arg> and not [arg]

from nestjs-console.

kashyap-aditya avatar kashyap-aditya commented on May 30, 2024

The problem with both these solutions is that I also call createUser function from other functions and hence I can't modify the argument list of createUser function. I am wondering what a neat workaround would be. I currently made another function "createUserWrapper" that takes command as input, parses it, and calls "createUser". This way, my original createUser is untouched and I can continue calling it from other functions

from nestjs-console.

Rmannn avatar Rmannn commented on May 30, 2024

This the way to do it, you generally don't call functions without a wrapper, because you need to parse data before to pass it to yojr internal database service.

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.