Wednesday, August 21, 2019

Node.js check top level module environment require.main

Python의 아래와 같이 Node.js의 node에서 바로 실행되는 함수 여부임을 알수 있게 해주는 것이 있다.
if __name__ == "__main__":

다음과 같이 하면 된다.
if (require.main === module) {
}

No comments:

Post a Comment