# tiny-circular-progressbar

> The tiniest circular progress bar.

Latest version **1.0.1** (published 2021-06-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install tiny-circular-progressbar
pnpm add tiny-circular-progressbar
yarn add tiny-circular-progressbar
bun add tiny-circular-progressbar
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2021-06-04 |
| First published | 2021-06-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 30.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | evzonic |

## Links

- npm: https://www.npmjs.com/package/tiny-circular-progressbar
- Repository: https://github.com/evzonic/tiny-circular-progressbar
- Homepage: https://github.com/evzonic/tiny-circular-progressbar#readme
- Issues: https://github.com/evzonic/tiny-circular-progressbar/issues
- npm.io page: https://npm.io/package/tiny-circular-progressbar

## Recent versions

- 1.0.1 (latest) — 2021-06-04
- 1.0.0 — 2021-06-04

## README

# tiny-circular-progressbar

The tiniest circular progress bar

![npm](https://img.shields.io/npm/v/tiny-circular-progressbar)
![npm bundle size](https://img.shields.io/bundlephobia/min/tiny-circular-progressbar)

Creates a tiny circular progress bar.

## Install

```
$ npm install tiny-circular-progressbar
```

## Usage

```js
import React from "react";
import { useEffect } from "react";
import * as CircleProgress from "tiny-circular-progressbar";

useEffect(() => {
  new CircleProgress("progressbar_class_name", {
    max: 100,
    value: 60,
    textFormat: "percent",
  });
}, []);
```

---
_Source: https://npm.io/package/tiny-circular-progressbar · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
