https://github.com/visible/noro
one-time secret sharing for env vars
https://github.com/visible/noro
cli encryption env env-vars one-time one-time-secret secrets security sharing
Last synced: 4 months ago
JSON representation
one-time secret sharing for env vars
- Host: GitHub
- URL: https://github.com/visible/noro
- Owner: visible
- License: other
- Created: 2026-01-23T00:48:46.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-01-27T20:42:22.000Z (5 months ago)
- Last Synced: 2026-01-27T20:43:10.276Z (5 months ago)
- Topics: cli, encryption, env, env-vars, one-time, one-time-secret, secrets, security, sharing
- Language: TypeScript
- Homepage: https://noro.sh
- Size: 301 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
┌──────────────────────────────────────────────────────────────┐
│ │
│ / noro │
│ │
│ one-time secret sharing for env vars │
│ │
└──────────────────────────────────────────────────────────────┘
```
```bash
> what is this?
share env vars with one command
secrets encrypted client-side with aes-256-gcm
self-destructs after first claim
> share?
noro share OPENAI_API_KEY
→ noro.sh/a8f3k2#key
> claim?
npx noro a8f3k2#key
→ ✓ added OPENAI_API_KEY to .env
> features?
✓ end-to-end encryption (key never leaves your machine)
✓ one-time use (deleted after claim)
✓ no account required
✓ works with any env var
✓ cli + web interface
> how it works?
1. cli encrypts your env var locally
2. encrypted blob stored on server
3. decryption key stays in url fragment (never sent to server)
4. recipient decrypts client-side
5. secret deleted after first claim
> install?
npm i -g noro
> stack?
next.js · upstash redis · aes-256-gcm
> license?
mit
```