Request.js is a simple request tool for web applications.
It is used internally at Tidemann&Co for all our web applications that require request-response handling in JavaScript.
Installation is done via npm:
$ npm install tdmnco-request
Using Request.js is a breeze. Consider these lines of code:
import Request from 'tdmnco-request'
Request.get({ url: '/users/1' }).then((payload) => {
// Houston, we have a payload!
})
We believe in an open and welcoming community for all. Please post your questions in the Issues section here at GitHub or contact Kasper Tidemann directly at kt@tdmn.co.
Note that if your question has general relevance, it might be worth sharing with others.
Thanks for reading!
🎁