inline-rest-client

Easy to use rest client for js

Usage no npm install needed!

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

README

Easy to use rest client for JavaScript

quick example

if you want to connect to

https://example.com/api/person?id=1

you type

//init
import InlineRestClient from 'inline-rest-client'
var apiConnection = new InlineRestClient({url:'https://example.com/api'});

//use
apiConnection.person({id:1}).then(data=>console.log(data))

//other use
var data=await apiConnection.person({id:1})
console.log(data);

Browser support

it depends of Proxy https://caniuse.com/#feat=proxy and Promises https://caniuse.com/#feat=promises