I was looking for modern modules that implement basic HTTP methods such as GET, POST in Node.js.
I guess the most popular is request
. The async/await version of it is called request-promise-native
.
Recently I learned that these modules are being deprecated. So, what modern alternatives can I use that are built on the async/await paradigm?