JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://wzrd.in/standalone/node.js@latest"></script>
<script src="http://wzrd.in/standalone/npm@latest"></script>
<script src="http://wzrd.in/standalone/request@latest"></script>

JavaScript

var request = require('request');
var url = 'https://api.wheretheiss.at/v1/satellites/25544'
var reader = request(url);
readable.on('readable', function() {
// there is some data to read now
// do something here !!! 
    console.log('got %d characters of string data');

})