node-fetch example

node v8.17.0
version: 1.0.0
endpointsharetweet
const fetch = require("node-fetch") fetch("http://freegeoip.net/json/216.207.42.149") .then(response => response.json()) .then(data => console.log(data)) .catch(err => console.log(err))
Loading…

no comments

    sign in to comment