art-rest-client

Promise-based rest-client library. Makes HTTP/HTTPS easy in both NODE and BROWSER.

Usage no npm install needed!

<script type="module">
  import artRestClient from 'https://cdn.skypack.dev/art-rest-client';
</script>

README

ArtRestClient Build Status

Promise-based rest-client javascript library. Makes HTTP/HTTPS easy.

Works both in browser and NodeJs.

Features

  • promise based
  • streamlined JSON requests
  • streamlined binary support
  • CORS friendly

Install

npm install art-rest-client

Example

RestClient = require './art-rest-client'

RestClient.getJson "http://somewhere.com/users/123"
.then ({username, email}) ->
  RestClient.putJson "http://somewhere.com/users/123",
    username: "Mr New #{username}"

Info

uses XMLHttpRequest2:

Future?

The new-new is 'fetch' - seems to be getting decent support