Skip to content
/ zrob Public

🍃 🐜 Small, simple and modern HTTP request library for Node

Notifications You must be signed in to change notification settings

zaiste/zrob

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zrob

Simple and modern HTTP requests

Usage

const zrob = require('zrob');

zrob('https://httpbin.org/ip')
  .then(response => {
    console.log(response.body);
  })
  .catch(error => {
    console.log(error.response.body);
  });
zrob.post('https://httpbin.org/forms/post', { form: { size: 'small' } })

About

🍃 🐜 Small, simple and modern HTTP request library for Node

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published