Skip to content

Instantly share code, notes, and snippets.

View collinsbj's full-sized avatar

BJ Collins collinsbj

View GitHub Profile
var fetch = require("node-fetch");
function getData(url) {
fetch(url, {
headers: {
Accept: "application/json"
}
})
.then(response => response.json())
.then(response => {