# node-remote-base64

> Fetch remote data to base64 format.

Latest version **0.1.2** (published 2016-11-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install node-remote-base64
pnpm add node-remote-base64
yarn add node-remote-base64
bun add node-remote-base64
```

## 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.1.2 |
| Published | 2016-11-24 |
| First published | 2016-11-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=4.1.1 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Denis Yakovenko |
| Maintainers | yakovenkodenis |
| Keywords | base64, node, remote, fetch |

## Links

- npm: https://www.npmjs.com/package/node-remote-base64
- Repository: https://github.com/yakovenkodenis/node-remote-base64
- Homepage: https://github.com/yakovenkodenis/node-remote-base64#readme
- Issues: https://github.com/yakovenkodenis/node-remote-base64/issues
- npm.io page: https://npm.io/package/node-remote-base64

## Dependencies (1)

- [mime-types](https://npm.io/package/mime-types.md) ^2.1.13

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 0.1.2 (latest) — 2016-11-24
- 0.1.1 — 2016-11-24
- 0.1.0 — 2016-11-23
- 0.0.1 — 2016-11-23

## README

# Remote Base64 [![Build Status](https://travis-ci.org/yakovenkodenis/node-remote-base64.svg?branch=master)](https://travis-ci.org/yakovenkodenis/node-remote-base64)
======

## Installation

  `npm install --save node-remote-base64`

## Usage

#### ES5
```javascript
  const remoteBase64 = require('node-remote-base64');
  
  const getBase64 = () =>
    remoteBase65('http://placehold.it/100x100')
      .then(b64data => console.log(b64data))
      .catch(err => console.log(err));
```

#### Babel ES7 (Async/Await)
```javascript
  import remoteBase64 from 'node-remote-base64';

  const getBase64 = async () => {
    const b64data = await remoteBase65('http://placehold.it/100x100');
    console.log(b64data);
  }
```

## Tests

  `npm test`

## Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

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