1.0.12 • Published 4 years ago

web-http-promise-client v1.0.12

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

web-http-promise-client

Frontend library - HTTP promise client

There are few static rest methods (get, post, put)

Example:

import { HTTPClient } from "web-http-promise-client/out/index";

// payload, query, noCache, contentType - are not required arguments
HTTPClient.get("yourAwesomeURL", payload, query, noCache, contentType)
    .then(response => console.log(response))
    .catch(xhrObject => console.log(xhrObject));

// post and put methods have the same signature
HTTPClient.post("yourAwesomeURL", payload, query, noCache, contentType);
HTTPClient.put("yourAwesomeURL", payload, query, noCache, contentType);
1.0.12

4 years ago

1.0.10

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago