Skip to main content
Home

Built and signed on GitHub Actions

🌀 Minimal terminal spinner

This package works with Deno
This package works with Deno
JSR Score
64%
Published
9 months ago (0.2.2)

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

  • 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.

Built and signed on
GitHub Actions

New Ticket: Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@denosaurs/wait

Import symbol

import * as wait from "@denosaurs/wait";
or

Import directly with a jsr specifier

import * as wait from "jsr:@denosaurs/wait";