Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/deno/cli/tsc/dts/lib.deno.ns.d.ts>Deno.consoleSize

A modern runtime for JavaScript and TypeScript.
Go to Latest
function Deno.consoleSize
import { Deno } from "https://deno.land/x/deno@v1.40.5/cli/tsc/dts/lib.deno.ns.d.ts";
const { consoleSize } = Deno;

Gets the size of the console as columns/rows.

const { columns, rows } = Deno.consoleSize();

This returns the size of the console window as reported by the operating system. It's not a reflection of how many characters will fit within the console window, but can be used as part of that calculation.

Returns

{ columns: number; rows: number; }