Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to check if my module is being included or run directly. How can I do this in node.js?

share|improve this question

2 Answers

The docs describe another way to do this which may be the preferred method:

When a file is run directly from Node, require.main is set to its module.

To take advantage of this, check if this module is the main module and, if so, call your main code:

var main = function(){
    // main code
}

if (require.main === module) {
    main();
}
share|improve this answer
2  
Thanks. +1 for a documented solution which also reads better. – c089 Jul 24 '12 at 6:46
up vote 26 down vote accepted
if (!module.parent) {
  // this is the main module
} else {
  // we were require()d from somewhere else
}
share|improve this answer
Is this documented somewhere? – intuited May 18 '11 at 3:14
2  
Nope, but it's used in one of node.js's tests – nornagon May 19 '11 at 8:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.