1.0.8 • Published 5 years ago

pubcore-http v1.0.8

Weekly downloads
21
License
MIT
Repository
github
Last release
5 years ago

Build Status

little XMLHttpRequest wrapper to perform http(s) requests in web browser apps

  • only deals with application/json media
  • to use in web browser context
  • small/simple code base

Example

import http from 'pubcore-http'
import {doSomething, feedback} from './yourCode'

//POST some data, returns a Promise
http('https://my.domain.com/chat?locale=en-US', {text:'Hi!'}).then(
    response => doSomething(response),
    error => feedback(error)
)

//GET some data, returns a Promise
http('https://my.domain.com/chat/latest', null, 'GET').then(
    response => doSomething(response),
    error => feedback(error)
)