Hyperlinkv0.8.0-beta.28

Node

export class NPipeListenRequiresIpc extends Data.TaggedError(
  "NPipeListenRequiresIpc",
)<{
  readonly node: string;
  readonly kind: string;
}> {
  override get message() {
    return (
      `Node.nPipe requires an IpcSocket Node (Windows named-pipe path); ` +
      `"${this.node}" is ${this.kind}. Use Node.http / Node.ws (or httpServer / wsServer) for those transports.`
    );
  }
}
Referenced by 1 symbols