Skip to content
/ tty Public
forked from denosaurs/tty

🖨 Terminal utils and ansi escapes

License

Notifications You must be signed in to change notification settings

magurotuna/tty

 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 100.0%