how to fetch data from url in node js code example

Example 1: fetch data from external url nodejs

const fetch   = require('node-fetch');
 
app.get('/', function (req, res) {
    var url = 'https://api.darksky.net/forecast/<API KEY>/37.8267,-122.4233';
     
    fetch(url)
    .then(res => res.json())
    .then(data => {
        res.send({ data });
    })
    .catch(err => {
        res.send(err);
    });
});

Example 2: node js fetch data from url

var http = require('http');

var options = {
    host: 'google.com',
    path: '/'
}
var request = http.request(options, function (res) {
    var data = '';
    res.on('data', function (chunk) {
        data += chunk;
    });
    res.on('end', function () {
        console.log(data);

    });
});
request.on('error', function (e) {
    console.log(e.message);
});
request.end();