Skip to content

Instantly share code, notes, and snippets.

@cjohansen
Last active November 9, 2015 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cjohansen/a087748f3ab9aa78aafd to your computer and use it in GitHub Desktop.
Save cjohansen/a087748f3ab9aa78aafd to your computer and use it in GitHub Desktop.
setTimeout(function () {
throw new Error('Oh my');
}, 2000);
{
"name": "test-npm-run",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node run.js & node die.js"
},
"author": "",
"license": "ISC"
}
setInterval(function () {
console.log('I\´m alive');
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment