url-spinner

1.0.1 • Public • Published

url-spinner

npm version

The spinner in your address bar. Inspired by http://wavyurl.com

Get started

Install

With npm: npm install url-spinner

Usage

Simple example

import { startSpinning } from "url-spinner";
 
const stopSpinning = startSpinning();
 
// Perform some async tasks and call stopSpinning at a proper time
setTimeout(stopSpinning, 3000);

To stop spinning automatically by 3s later

startSpinning({ duration: 3000 });

To customize the spinner

startSpinning({
  duration: 3000,
  spinner: ["🌚", "🌘", "🌗", "🌖", "🌝", "🌔", "🌓", "🌒"]
});

Apis

startSpining(options: UrlSpinnerOptions)

export interface UrlSpinnerOptions {
  spinner?: string[];
  duration?: number;
}

License

MIT (Chuang Yu cyu9960@gmail.com)

Readme

Keywords

Package Sidebar

Install

npm i url-spinner

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

497 kB

Total Files

19

Last publish

Collaborators

  • cyyyu