# config64

> Encodes/Decodes config files into strings for environmental variables.

Latest version **0.0.3** (published 2022-04-20) · ISC license · 0 weekly downloads

## Install

```sh
npm install config64
pnpm add config64
yarn add config64
bun add config64
```

Provides the command `config64`.

## Health

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

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2022-04-20 |
| First published | 2022-01-25 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 7.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Keith Showalter |
| Maintainers | mechkit |
| Keywords | config, env_vars, base64 |

## Links

- npm: https://www.npmjs.com/package/config64
- Repository: https://gitlab.com/mechkit/config64
- Homepage: https://gitlab.com/mechkit/config64#readme
- Issues: https://gitlab.com/mechkit/config64/issues
- npm.io page: https://npm.io/package/config64

## Alternatives

- [jsforce](https://npm.io/package/jsforce.md) — 851.2K weekly downloads
- [react-native-qrcode-svg](https://npm.io/package/react-native-qrcode-svg.md) — 693.5K weekly downloads
- [@salesforce/plugin-data](https://npm.io/package/@salesforce/plugin-data.md) — 394.9K weekly downloads
- [@backstage/plugin-search-common](https://npm.io/package/@backstage/plugin-search-common.md) — 308.5K weekly downloads
- [@chain-registry/types](https://npm.io/package/@chain-registry/types.md) — 38.4K weekly downloads

## Recent versions

- 0.0.3 (latest) — 2022-04-20
- 0.0.2 — 2022-01-25

## README

# config64

```js
import config64 from 'config64';

let config = {
  name: 'server config',
  version: '2022-02-02',
  greeting: 'hello',
  database_username: 'admin',
  database_password: '12345',
}

let configString = config64.encode(config);

// SERVER_CONFIG=${configString}

let importedConfig = config64.decode(configString);
```

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