當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js require.main用法及代碼示例


require.main

添加於:v0.1.17

Module 對象表示 Node.js 進程啟動時加載的入口腳本,如果程序的入口點不是 CommonJS 模塊,則為 undefined。見"Accessing the main module"

entry.js 腳本中:

console.log(require.main);
node entry.js
Module {
  id: '.',
  path: '/absolute/path/to',
  exports: {},
  filename: '/absolute/path/to/entry.js',
  loaded: false,
  children: [],
  paths:
   [ '/absolute/path/to/node_modules',
     '/absolute/path/node_modules',
     '/absolute/node_modules',
     '/node_modules' ] }

相關用法


注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 require.main。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。