Skip to content
This repository has been archived by the owner on Feb 18, 2022. It is now read-only.

Latest commit

 

History

History
20 lines (13 loc) · 268 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 268 Bytes

spinner

simple spinner for secman cli.

Usage

import { spinner } from "@secman/spinner";

const loading = spinner("Loading ...").start();

// stop
loading.stop();

// success message
loading.succeed("Done");

// fail message
loading.fail("Failed");