Login
Remember
Register
Ask a Question
Which of the following is used to send HTTP requests in Node.js?
0
votes
asked
May 25, 2024
in
NodeJS Essentials
by
rajeshsharma
Which of the following is used to send HTTP requests in Node.js?
A) http.request()
B) http.get()
C) http.send()
D) http.fetch()
http
requests
node
js
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 25, 2024
by
rajeshsharma
Answer: A
Explanation: The http.request() method is used to send HTTP requests in Node.js.
...