Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 945 Bytes

README.md

File metadata and controls

36 lines (25 loc) · 945 Bytes

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.