I need to use gulp to call a Web API 2 controller method which returns a string. I was given several recommendations on how to accomplish this:
- node-http
- Request Library (I was just given the name, but guessing that's it. SO Example)
- I also found request/request-promise which seems to also do what I want.
Is there a "recommended" way to make get/post/etc calls too APIs from gulp? Is one of the above methods better than the others? I can't find much in the way of tutorials or general usage advice.