Skip to main content
function channel
channel(name: string | symbol): Channel
Deprecated

This is the primary entry-point for anyone wanting to publish to a named channel. It produces a channel object which is optimized to reduce overhead at publish time as much as possible.

import diagnostics_channel from 'node:diagnostics_channel';

const channel = diagnostics_channel.channel('my-channel');

Parameters

name: string | symbol

The channel name

Return Type

The named channel object

Back to top