Skip to content

Request.js is a simple request tool for web applications.

License

Notifications You must be signed in to change notification settings

tdmnco/request-js

Repository files navigation

Request.js NPM Version

What is Request.js?

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.

↑ Back to top

Installation

Installation is done via npm:

$ npm install tdmnco-request

↑ Back to top

Documentation

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!
})

Getting Help

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!

🎁