Last active
January 27, 2016 15:31
-
-
Save q42jaap/90ee8aaf04520669a866 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var i = 0; | |
console.log('starting app'); | |
setInterval(function() { | |
i++; | |
console.log('simulate activity'); | |
if (i > 5) { | |
doesNotExist = 0; // this will throw ReferenceError: doesNotExist is not defined | |
} | |
}, 1000); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"main": "index.js", | |
"devDependencies": { | |
"nodemon": "^1.8.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment