Let's go ahead and test this by rerunning the node app.js command in the Terminal. We'll use the same zip code, 08822:
node app.js -a 08822

When we run it we get Flemington, NJ as the formatted address and It's currently is 31.01. It feels like 24.9. Now to test that this is working we'll type in something else inside of quotes, something like Key West fl:
node app.js -a 'Key West fl'

And when we run this command we do get Key West, FL as shown as the formatted address, and It's currently 64.51. It feels like 64.52.
With this in place, the weather application is now wired up. We take the address we get the latitude/longitude pair using the Google Geocoding API. Then we use our forecast API to take that latitude/longitude pair and convert it into temperature information.