1.0.0 • Published 10 months ago

ssjs-fetch v1.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
10 months ago

SSJS fetch

Simplified interface for Script.Util.HttpRequest.

Installation

npm install ssjs-fetch

Interface

Get: function (url, headers = [], continueOnError = true, retries = 0, emptyContentHandling = 0) 
Post: function (url, data, headers = [], continueOnError = true, retries = 0, emptyContentHandling = 0) 
Put: function(url, data, headers = [], continueOnError = true, retries = 0, emptyContentHandling = 0) 
Patch: function(url, data, headers = [], continueOnError = true, retries = 0, emptyContentHandling = 0) 
Delete: function (url, headers = [], continueOnError = true, retries = 0, emptyContentHandling = 0) 

Example

import $ from 'ssjs-fetch';
const result = $.Post('https://httpbin.org/post', {
    foo: 'bar'
});
1.0.0

10 months ago