The super simple http client for making requests in node.js called simply request
In many node.js projects it is necessary to grab resources that may exist on some kind of external source. In general often you may just need to get what is there, just a simple get request, and thats it. It would also be nice to use some kind of package that helps to make it stupid easy, for this there is a popular npm package simply called request. request is one of many http clients that are available for a node.js environment, another popular such package would be axios. There is also not bothering with any npm package at all, and using a built in nopde.js module like that of http. However for the sake of this post I will be keeping the focus on request.