lemon-ajax
v1.0.5
Published
simple js ajax
Downloads
20
Readme
lemon-ajax
Simple async requests for javascript
Install
npm install lemon-ajax
Usage for nodejs
const ajax = require('lemon-ajax');
ajax.get('http://example.com/',args)
.then(function(res){
// your code on success
}).catch(function(res){
// your code on error
});
Usage for non-nodejs
const ajax = new lemonAjax();
ajax.get('http://example.com/',args)
.then(function(res){
// your code on success
}).catch(function(res){
// your code on error
});
