requiesce

0.0.1 • Public • Published

Requiesce

A request part maker for lazy developers. You can pass it a parameterized url and an object, and it will return a valid url and a body object with the remaining data not used in url completion.

Example

import requiesce from 'requiesce'
 
const requestUrl = `https://api.mysite.com/accounts/:id/assets/:assetId`
const requestBody = {
  id: 12345,
  assetId: 67890,
  type: 'image' 
}
 
const { url, body } = requiesce(requestUrl, requestBody)
 
// url: https://api.mysite.com/accounts/12345/assets/67890
// body: { type: 'image' }
 
fetch(url, { method: 'POST', body })
 

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i requiesce

      Weekly Downloads

      0

      Version

      0.0.1

      License

      MIT

      Unpacked Size

      8.22 kB

      Total Files

      8

      Last publish

      Collaborators

      • supremetechnopriest