X Tutup
const fetch = require('node-fetch'); let url = 'https://mockbin.com/har'; let options = {method: 'GET'}; fetch(url, options) .then(res => res.json()) .then(json => console.log(json)) .catch(err => console.error('error:' + err));
X Tutup