denosaurs / wait

πŸŒ€ Minimal terminal spinner

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wait

Tags CI Status License



Usage

import { wait } from "https://deno.land/x/wait/mod.ts";

const spinner = wait("Generating terrain").start();

setTimeout(() => {
  spinner.color = "yellow";
  spinner.text = "Loading dinosaurs";
}, 1500);

Other

Related

  • ora - Elegant terminal spinner

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

πŸŒ€ Minimal terminal spinner

https://deno.land/x/wait

License:MIT License


Languages

Language:TypeScript 100.0%