fetch-json-data
v1.0.5
Published
Node library for getting JSON document
Downloads
7
Readme
fetch-json-data
Node library for getting JSON document
Install
npm install --save fetch-json-data
Usage
const getData=require('fetch-json-data')
// promise
let dataObj;
let url = http() + ip + '/getData', method = 'post';
getData(url, method)
.then(function (result) {
console.dir(result);
dataObj = result;
})
.catch(function(error){
console.log(error);
});
// async/await
(async function(){
let dataObj;
let url = http() + ip + '/getData', method = 'post';
try{
const result = await getData(url, method);
dataObj = result;
} catch (error) {
console.log(error);
}
})();