Skip to content

Instantly share code, notes, and snippets.

@tmtk75
Created June 8, 2013 02:38
Show Gist options
  • Select an option

  • Save tmtk75/5733748 to your computer and use it in GitHub Desktop.

Select an option

Save tmtk75/5733748 to your computer and use it in GitHub Desktop.
function App() {}
App.prototype.start = function(msg) {
console.log("started:", msg);
}
module.exports = App;
if (!module.parent) {
new App().start("app.js");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment