Giter Club home page Giter Club logo

Comments (9)

serhiisol avatar serhiisol commented on June 16, 2024

@cmanrique-surtec could you add more details? I don't think I understand the problem.

from node-decorators.

vikaskandari avatar vikaskandari commented on June 16, 2024

Are you talking about CLI ? like >_ nest generate controller abc

from node-decorators.

cmanrique-surtec avatar cmanrique-surtec commented on June 16, 2024

Edited

from node-decorators.

vikaskandari avatar vikaskandari commented on June 16, 2024

I still don't understand what you are trying to say , as far as per the code , you want req , res in constructor so we don't have to reference them via method arguments

from node-decorators.

cmanrique-surtec avatar cmanrique-surtec commented on June 16, 2024

Initially yes, but it can be very useful for some other scenario, where you want to generate something that is used in all the methods and has to be generated in each request

from node-decorators.

vikaskandari avatar vikaskandari commented on June 16, 2024

Express will not know for which route it has to send the response.

example :

@Controller('/')
class SomeController{
  constructor(@Req() private req, @Res() private res) {}
  
  @Get('/action/1')
  action1() {
    res.send("Action 1");
  }

 @Get('/action/2')
  action2() {
    res.send("Action 2");
  }

}

express will send the response of controller not method but i think its possible but it will be a custom logic

from node-decorators.

cmanrique-surtec avatar cmanrique-surtec commented on June 16, 2024

If this is not possible, or is too complex, dismiss the request and close it. The module is great as it is, but if this could be implemented, it would be a tool that would allow programming as if it were c# or java, it's already very close.

from node-decorators.

cmanrique-surtec avatar cmanrique-surtec commented on June 16, 2024

@serhiisol ?

from node-decorators.

serhiisol avatar serhiisol commented on June 16, 2024

Could you give a scenario where it can be useful? cause at the moment it's not possible, and I can think of the CLI to generate a controller way only.

from node-decorators.

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.