# base58-string

> base58 no buffer, input string out string, suport browser

Latest version **0.0.3** (published 2018-11-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install base58-string
pnpm add base58-string
yarn add base58-string
bun add base58-string
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2018-11-06 |
| First published | 2018-11-06 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 9.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | fadeneo |
| Maintainers | fadeneo |

## Links

- npm: https://www.npmjs.com/package/base58-string
- npm.io page: https://npm.io/package/base58-string

## Recent versions

- 0.0.3 (latest) — 2018-11-06
- 0.0.2 — 2018-11-06
- 0.0.1 — 2018-11-06

## README

# base58-string

## What?

base58 encode decode without buffer;  
input string out string;  
suport browser;  
use utf-8;  
因为是UTF-8编码，所以支持中文;

## Installation

```shell
npm install base58-string
```

## CDN
```html
<!-- import JavaScript -->
<script src="https://unpkg.com/base58-string/index.cdn.js"></script>
```

## Usage

```javascript
const Bs = require('base58-string');
Bs.encode('base58'); // 'qzTiEHgB'
Bs.decode('qzTiEHgB'); // 'base58'
```

## License

Released under the MIT license. Copyright (c) 2018 fadeneo.

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