web-dev-qa-db-ja.com

CLI REPL Deno付き

Denoを使用してCLIアプリケーションを構築したいのですが、Node.jsのREPLモジュールに対するコマンドラインアプリケーションと同様の操作をユーザーに要求し続けることができるモジュールが見つかりません

助言がありますか?

4
Thomas Magane

1行だけ必要な場合は、これを行うことができます

import { readLines } from "https://raw.githubusercontent.com/denoland/deno/master/std/io/bufio.ts";

const Word = (await readLines(Deno.stdin).next()).value.trim()

console.log(`You typed: ${Word}`)
D:\WorkSpace\VSCode\deno-play>deno run -A main.ts
hello
You typed: hello

2020年6月19日に現在のデノランドlibコミット

1
NomadCoder