Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/ext/net/lib.deno_net.d.ts>Deno.connect

A modern runtime for JavaScript and TypeScript.
Go to Latest
function Deno.connect
allow-net
import { Deno } from "https://deno.land/x/deno@v1.29.0/ext/net/lib.deno_net.d.ts";
const { connect } = Deno;

Connects to the hostname (default is "127.0.0.1") and port on the named transport (default is "tcp"), and resolves to the connection (Conn).

const conn1 = await Deno.connect({ port: 80 });
const conn2 = await Deno.connect({ hostname: "192.0.2.1", port: 80 });
const conn3 = await Deno.connect({ hostname: "[2001:db8::1]", port: 80 });
const conn4 = await Deno.connect({ hostname: "golang.org", port: 80, transport: "tcp" });

Requires allow-net permission for "tcp".