1.0.8 • Published 6 years ago

jaxer v1.0.8

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

jaxer

An HttpClient library to abstract AJAX functionality with support for cancellation.

import {AjaxClient} from 'jaxer'; 

var a = new AjaxClient(); 

a.get({
    url:'/',
    handler:(req)=>{
        console.log('ze');
        req.cancel();
    }
})
.then(e=>{
    console.log(e);
},e=>{
    console.log('cancelled',e)
});
1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago