Bun

控制台

注意 — Bun 提供浏览器和 Node.js 兼容的 console 全局对象。此页面仅记录 Bun 原生 API。

在 Bun 中,console 对象可以用作 AsyncIterable,以顺序读取 process.stdin 中的行。

for await (const line of console) {
  console.log(line);
}

这对于实现交互式程序非常有用,例如以下加法计算器。

adder.ts
console.log(`Let's add some numbers!`);
console.write(`Count: 0\n> `);

let count = 0;
for await (const line of console) {
  count += Number(line);
  console.write(`Count: ${count}\n> `);
}

运行文件

bun adder.ts
Let's add some numbers!
Count: 0
5
Count: 5
5
Count: 10
5
Count: 15