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

getline

Line input module for Deno

Exemple

import { getline } from "https://deno.land/x/getline/mod.ts";

const name = getline("What's your name ? ");
console.log(`Hello ${name}`);

You can also set a limit

import { getline } from "https://deno.land/x/getline/mod.ts";

const name = getline("What's your name ? (20 chars max) ", 20);
console.log(`Hello ${name}`);