astros

Make a web request to open-notify.org and check who is in space.

Run it like this:

cd path/to/steel-ant-input-output/examples-nodejs/iss-api/astros
npm install
node index.js

index.js

/**
 * call the now api of the iss
 * and display twho is in space right now
 */
var request = require('request');

var url = "http://api.open-notify.org/astros.json";// the API url
// make the request
request(url, function(error, response, body) {
  if (!error && response.statusCode == 200) {// error check
    var obj = JSON.parse(body); // parse the string to JSON
    // display how many people are in space right now
    console.log("There are %s people in space right now.", obj.number);
    // loop them all and tell us which spaceship and their name
    for (var i = 0; i < obj.people.length; i++) {
      console.log("On Craft: %s\tName: %s", obj.people[i].craft, obj.people[i].name);
    }
  } else {
    console.error(error);
  }
});

package.json

{
  "name": "astros",
  "version": "1.0.0",
  "description": "who is in space",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "request": "^2.61.0"
  }
}