0

I was wondering if it is possible from my nodejs application to post to an API some information because I can't seem to find some example where I can make a request from the nodejs server.

TestersGonnaTest
  • 1,017
  • 2
  • 9
  • 21

1 Answers1

1

I have been using request rather than node http. IMO It's definitely more powerful and easier to use

ControlAltDel
  • 33,923
  • 10
  • 53
  • 80
  • Or superagent(https://github.com/visionmedia/superagent) or reqwest(https://github.com/ded/reqwest). – Alfred Jun 06 '12 at 01:09