0.1.114 • Published 9 months ago

vellin v0.1.114

Weekly downloads
-
License
AGPL-3.0
Repository
github
Last release
9 months ago

Vell

Manage your secrets and use them everywhere! Replace your .env files.

Features

  1. Vercel deployable (WIP) and self hostable.
  2. Persistent and encrypted Redis for secret store.
  3. Inject secrets with APIs (WIP).
  4. Assign secrets to projects.
  5. Ditch tedious .env setup.

Why

A lot of secret managing solutions exist already. The problem is many are either proprietary, work with certain cloud providers, work in private networks, or are complex to use and setup.

I was looking for a secrets manager that was easy to use, could store secrets in serverless data stores, and could fetch them fast with APIs. Extending this facility with Vercel, all it does is an API call to fetch, store or use secrets within your apps.

Replace your .env files.

All secrets are encrypted by default in both storage and transport (TLS).

Usage

For self-hosted version setup a Redis database at Upstash.

CLI

  1. To set or get a secret
npx vellin

Follow the prompts.

  1. To export a secret to .env
npx vellin secretName

This will export secret to the .env in the working directory.

Node.js

  1. Set a secret
import Vell from "vellin";
const vell = new Vell();
const secret = await vell.set("secretName", "secretValue");
  1. Get a secret
import Vell from "vellin";
const vell = new Vell();
const secret = await vell.get("secretName");
console.log(secret);

Install

npm i -g vellin

API

Coming soon.

License

AGPL-3.0 ©️ Zubin

0.1.114

9 months ago

0.1.113

9 months ago

0.1.112

9 months ago

0.1.111

9 months ago

0.1.110

9 months ago

0.1.109

9 months ago

0.1.108

9 months ago

0.1.107

9 months ago

0.1.106

9 months ago

0.1.105

9 months ago

0.1.104

9 months ago

0.1.103

9 months ago

0.1.102

9 months ago

0.1.101

9 months ago

0.1.10

9 months ago

0.1.9

9 months ago

0.1.8

9 months ago

0.1.7

9 months ago

0.1.6

9 months ago

0.1.5

9 months ago

0.1.4

9 months ago

0.1.3

9 months ago

0.1.2

9 months ago

0.1.1

9 months ago

0.1.0

9 months ago