Skip to content

Instantly share code, notes, and snippets.

@miguelmota
Created December 20, 2016 19:42
Show Gist options
  • Save miguelmota/a6258318a5b7ce9b462243e25c2025a5 to your computer and use it in GitHub Desktop.
Save miguelmota/a6258318a5b7ce9b462243e25c2025a5 to your computer and use it in GitHub Desktop.
Node.js equivalent of Python's if __name__ == '__main__'
function main() {}
if (require.main === module) {
main();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment