You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
354 B
JavaScript

"use strict";
const axios = require("axios");
const Promise = require("bluebird");
const getJson = require(".");
Promise.try(() => {
return axios.get("http://cryto.net/test.json", getJson.axiosConfiguration); // {"hello": "world"}
}).then((response) => {
let parsedJson = getJson.parse(response);
console.log(parsedJson); // { hello: 'world' }
});