1
的模式seen in both Node和Python開發,允許模塊工作中使用兩個獨立的和作爲模塊看起來是這樣的:模式如果(require.main),關於Azure的iisnode
function main() {
// ....
}
if(require.main === module) {
main();
}
module.exports = {
start : main
}
不幸的是,這does not work對微軟的Azure雲服務,如iisnode
覆蓋require.main與別的東西(不知道是什麼)。我該如何重寫支票才能在Azure上工作,如果它是主要入口點,則啓動主模塊?