Skip to content

spieljs/spiel-request

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c421295 · May 27, 2019

History

30 Commits
May 27, 2019
May 27, 2019
May 27, 2019
May 27, 2019
Nov 16, 2018
Mar 28, 2018
May 27, 2019
May 27, 2019
May 27, 2019
Feb 4, 2018
Nov 16, 2018
May 27, 2019
May 27, 2019

Repository files navigation

Spiel Request

Spiel request is a module to send ajax request. It use XmlHttpRequest

Api documentation

How use it

Set the request options by default

import {httpRequest, RequestConfig, RequestOptions, Headers} from 'spiel-request'

const headers: Headers  = {
    'Accept': 'application/json, text/*'
} 
const options: RequestConfig = {
    responseType: 'text',
    headers,
    credentials: true,
    authType: 'base64',
    auth: {
        username: 'test'
        password: '123456'
    }
    domain: 'http://localhost:3000'
}

Send your requests

const url = 'http://localhost:3000/users';
const response = httpRequest.sendRequest({
    url,
    method: 'get'
});

Upload your files

const url = 'http://localhost:3000/upload';

const blob = new Blob(['abc123'], {type: 'text/plain'});

const file = httpRequest.uploadFile({
    url,
    file: blob,
    responseType: 'json',
    name: 'test'
});

Use the XmlHttpRequest methods

const oReq = httpRequest.request

oReq.addEventListener("progress", updateProgress);
oReq.addEventListener("load", transferComplete);
oReq.addEventListener("error", transferFailed);
oReq.addEventListener("abort", transferCanceled);

oReq.open();

Run Spiel Request tests

Open two terminals, in the first execute npm run service and the another npm test

License

Spiel Request is MIT licensed. See license