Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/cli/js/net.ts>Conn

A modern runtime for JavaScript and TypeScript.
Go to Latest
interface Conn
implements Reader, Writer, Closer
import { type Conn } from "https://deno.land/x/deno@v0.28.0/cli/js/net.ts";

Properties

localAddr: string

The local address of the connection.

remoteAddr: string

The remote address of the connection.

rid: number

The resource ID of the connection.

Methods

closeRead(): void

Shuts down (shutdown(2)) the reading side of the TCP connection. Most callers should just use close().

closeWrite(): void

Shuts down (shutdown(2)) the writing side of the TCP connection. Most callers should just use close().