Cloudflare 中文文档
Workers
Workers
编辑这个页面
跳转官方原文档
Set theme to dark (⇧+D)

EventEmitter

An EventEmitter is an object that emits named events that cause listeners to be called.

The implementation in the Workers runtime fully supports the entire Node.js EventEmitter API. This includes the captureRejections option that allows improved handling of async functions as event handlers:

Refer to the Node.js documentation for EventEmitter for more information.