Skip to content

Instantly share code, notes, and snippets.

@tmbritton
tmbritton / check-dat-star-wars.js
Last active October 19, 2015 17:36 — forked from chrislambe/check-dat-star-wars.js
Are tickets on sale yet for The Force Awakens?
var https = require('https'),
exec = require('child_process').exec;
// Check every 5 minutes
var checkDelay = 60000 * 5;
// Store the previous response body for comparison
var lastBody = null;
var checkTickets = function()