denosaurs / tty

🖨 Terminal utils and ansi escapes

Home Page:https://deno.land/x/tty

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tty

Tags CI Status License



import * as tty from "https://deno.land/x/tty/mod.ts";

await tty.hideCursor();

let i = 0;

setInterval(() => {
  tty.clearScreenSync();
  tty.goHomeSync();
  console.log(i++);
}, 200);

other

contribution

Pull request, issues and feedback are very welcome. Code style is formatted with deno fmt and commit messages are done following Conventional Commits spec.

licence

Copyright 2020-present, the denosaurs team. All rights reserved. MIT license.

About

🖨 Terminal utils and ansi escapes

https://deno.land/x/tty

License:MIT License


Languages

Language:TypeScript 100.0%