Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/denosaurs/tty

🖨 Terminal utils and ansi escapes
https://github.com/denosaurs/tty

deno terminal tty utils

Last synced: 4 months ago
JSON representation

🖨 Terminal utils and ansi escapes

Awesome Lists containing this project

README

        

# tty

[![Tags](https://img.shields.io/github/release/denosaurs/tty)](https://github.com/denosaurs/tty/releases)
[![CI Status](https://img.shields.io/github/actions/workflow/status/denosaurs/tty/check.yml?branch=main)](https://github.com/denosaurs/tty/actions)
[![License](https://img.shields.io/github/license/denosaurs/tty)](https://github.com/denosaurs/tty/blob/master/LICENSE)







```typescript
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.