inline-rest-client

1.5.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i inline-rest-client

Weekly Downloads

4

Version

1.5.1

License

MIT

Unpacked Size

8.11 kB

Total Files

10

Last publish

Collaborators

  • matrix0123456789