No description
  • Rust 42.9%
  • HTML 27.7%
  • JavaScript 20.3%
  • CSS 8.5%
  • Shell 0.4%
  • Other 0.2%
Find a file
Dániel Szabó 937a24b1d6
Merge pull request #327 from szabodanika/fix-326
Patch #326, change env defaults, bump to 2.1.4
2026-03-08 22:36:07 +02:00
.cargo Adds a feature no-c-deps which makes microbin easy to crosscompile 2024-10-22 18:14:54 +02:00
.github Patch #326, change env defaults, bump to 2.1.4 2026-03-08 22:30:46 +02:00
src Patch #326, change env defaults, bump to 2.1.4 2026-03-08 22:30:46 +02:00
templates Patch #326, change env defaults, bump to 2.1.4 2026-03-08 22:30:46 +02:00
.env Patch #326, change env defaults, bump to 2.1.4 2026-03-08 22:30:46 +02:00
.gitignore Add multi-attachment support 2026-02-23 21:47:16 +02:00
Cargo.lock Patch #326, change env defaults, bump to 2.1.4 2026-03-08 22:30:46 +02:00
Cargo.toml Patch #326, change env defaults, bump to 2.1.4 2026-03-08 22:30:46 +02:00
compose.yaml Update compose.yaml 2026-03-03 22:13:34 -06:00
docker-setup.sh Docker setup script 2023-07-02 13:04:28 +03:00
Dockerfile Update Dockerfile 2023-07-01 23:18:06 +03:00
LICENSE Update copyright year in LICENSE file 2026-01-12 18:20:09 +02:00
README.md Revise README for clarity and server information 2026-03-07 21:54:32 +02:00
SECURITY.md Change vulnerability reporting email address 2026-01-12 18:21:55 +02:00

Screenshot

MicroBin

Build crates.io Docker Image Docker Pulls

MicroBin is a super tiny, feature-rich, configurable, self-contained and self-hosted paste bin web application. It is very easy to set up and use, and will only require a few megabytes of memory and disk storage. It takes only a couple minutes to set it up, why not give it a try now?

Get your own MicroBin server at my.microbin.eu!

Test MicroBin at pub.microbin.eu!

Or host MicroBin yourself

Run our quick docker setup script (DockerHub):

bash <(curl -s https://microbin.eu/docker.sh)

Or install it manually from Cargo:

cargo install microbin;
curl -L -O https://raw.githubusercontent.com/szabodanika/microbin/master/.env;
source .env;
microbin

On our website microbin.eu, you will find the following:

Features

  • Entirely self-contained executable, MicroBin is a single file!
  • Server-side and client-side E2E encryption
  • File uploads (e.g. server.com/file/pig-dog-cat)
  • Raw text serving (e.g. server.com/raw/pig-dog-cat)
  • QR code support
  • URL shortening and redirection
  • Animal names instead of random numbers for upload identifiers (64 animals)
  • Multiple attachments
  • SQLite and JSON database support
  • Private and public, editable and uneditable, automatically and never expiring uploads
  • Automatic dark mode and custom styling support with very little CSS and only vanilla JS (see water.css)
  • And much more!

What is an upload?

In MicroBin, an upload can be:

  • A text that you want to paste from one machine to another, e.g. some code,
  • Files that you want to share, e.g. a video that is too large for Discord, a zip with a code project in it or an image,
  • A URL redirection.

When is MicroBin useful?

You can use MicroBin:

  • To send long texts to other people,
  • To send large files to other people,
  • To share secrets or sensitive documents securely,
  • As a URL shortener/redirect service,
  • To serve content on the web, eg . configuration files for testing, images, or any other file content using the Raw functionality,
  • To move files between your desktop and a server you access from the console,
  • As a "postbox" service where people can upload their files or texts, but they cannot see or remove what others sent you,
  • Or even to take quick notes.

...and many other things, why not get creative?

MicroBin and MicroBin.eu are available under the BSD 3-Clause License.