タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

nodejsとTypeScriptとECMAScriptに関するefclのブックマーク (1)

  • Process | Node.js v24.6.0 Documentation

    Process# Source Code: lib/process.js The process object provides information about, and control over, the current Node.js process. import process from 'node:process';const process = require('node:process');copy Process events# The process object is an instance of EventEmitter. The 'beforeExit' event is emitted when Node.js empties its event loop and has no additional work to schedule. Normally, th

    efcl
    efcl 2024/07/28
    Node.js以外をサポートする必要がESMの環境で条件分岐でfsなどをESMから読み込むのに`process.getBuiltinModule(id)`が利用できる
  • 1