An open API service indexing awesome lists of open source software.

https://github.com/iron-m4n/erasebin

EraseBin is a self-destructing pastebin focused on privacy. It encrypts data, generates short links, and deletes pastes after viewing.
https://github.com/iron-m4n/erasebin

end-to-end-encryption pastebin pastebin-api postgresql

Last synced: 3 months ago
JSON representation

EraseBin is a self-destructing pastebin focused on privacy. It encrypts data, generates short links, and deletes pastes after viewing.

Awesome Lists containing this project

README

          

# EraseBin

EraseBin is a self-destructing pastebin focused on privacy. It encrypts data, generates short links, and deletes pastes after viewing.

## Features
- Burn-on-read pastes
- End-to-end encryption
- Short random URLs
- Optional password

## Usage
### Create a Paste
```sh
curl -X POST https://yourdomain.com/create -H "Content-Type: application/json" -d '{"content":"Your text"}'
```

### Retrieve a Paste
```sh
curl https://yourdomain.com/{paste_id}
```

## Installation
```sh
git clone https://github.com/IRON-M4N/EraseBin.git
cd EraseBin
npm install
npm start
```

© IRON-M4N