# atob-lite

> Smallest/simplest possible means of using atob with both Node and browserify

Latest version **2.0.0** (published 2017-06-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install atob-lite
pnpm add atob-lite
yarn add atob-lite
bun add atob-lite
```

## Health

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

Positive: has types package; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.0.0 |
| Published | 2017-06-19 |
| First published | 2015-06-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | separate (@types/atob-lite) |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 11 |
| Author | Hugh Kennedy |
| Maintainers | hughsk |
| Keywords | atob, base64, isomorphic, browser, node, shared |

## Links

- npm: https://www.npmjs.com/package/atob-lite
- Repository: https://github.com/hughsk/atob-lite
- Issues: https://github.com/hughsk/atob-lite/issues
- npm.io page: https://npm.io/package/atob-lite

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 2.0.0 (latest) — 2017-06-19
- 1.0.0 — 2015-06-25

## README

# atob-lite
![](http://img.shields.io/badge/stability-stable-orange.svg?style=flat)
![](http://img.shields.io/npm/v/atob-lite.svg?style=flat)
![](http://img.shields.io/npm/dm/atob-lite.svg?style=flat)
![](http://img.shields.io/npm/l/atob-lite.svg?style=flat)

Smallest/simplest possible means of using atob with both Node and browserify.

In the browser, decoding base64 strings is done using:

``` javascript
var decoded = atob(encoded)
```

However in Node, it's done like so:

``` javascript
var decoded = new Buffer(encoded, 'base64').toString('utf8')
```

You can easily check if `Buffer` exists and switch between the approaches
accordingly, but using `Buffer` anywhere in your browser source will pull
in browserify's `Buffer` shim which is pretty hefty. This package uses
the `main` and `browser` fields in its `package.json` to perform this
check at build time and avoid pulling `Buffer` in unnecessarily.

## Usage

[![NPM](https://nodei.co/npm/atob-lite.png)](https://nodei.co/npm/atob-lite/)

### `decoded = atob(encoded)`

Returns the decoded value of a base64-encoded string.

## License

MIT. See [LICENSE.md](http://github.com/hughsk/atob-lite/blob/master/LICENSE.md) for details.

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