Pastedown alternatives and similar software solutions
Based on the "Pastebins" category.
Alternatively, view Pastedown alternatives based on common mentions on social networks and blogs.
-
PrivateBin
A minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted in the browser using 256 bits AES. -
Sup3rS3cretMes5age
Simple to use, simple to deploy, one time self destruct messaging service, with hashicorp vault as a backend -
Modern Paste
DISCONTINUED. Modern pastebin with a contemporary, minimalistic user interface backed by a robust feature set. -
Paaster.io
Paaster is a secure and user-friendly pastebin application that prioritizes privacy and simplicity. With end-to-end encryption and paste history, Paaster ensures that your pasted code remains confidential and accessible. -
cryptonote
:lock: A simple open source web application that lets users encrypt and share messages that can only be read once. -
ZeroBin
DISCONTINUED. This Project has been renamed and moved to https://github.com/PrivateBin/PrivateBin -
localpaste
a simple python based pastebin you can run locally, with curl for input, just like clbin.com -
Phaste
DISCONTINUED. A Phalcon-based, MySQL pastebin application with privacy-respecting Piwik integration and syntax highlighting. -
Linked.PM
A simple web application which encrypts your private messages (Java Script client-side encryption) and converts them into clickable links and QR-codes.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Pastedown or a related project?
README
Pastedown
An easy-to-use markdown-formatting pastebin.
Demo
Features
- Markdown rendering and syntax highlighting
- Doesn't look terrible
- HTTPS built in
- Automatic document deletion
Dependencies:
Pastedown is written in Go and uses Sass for generating CSS. It uses Pygments for syntax highlighting.
To run Pastedown, you will need:
- Python
To build/develop Pastedown you will also require:
Installation
For now, the process is:
- Clone this repo.
- Run
make
.
This builds the server executable (pastedown
) and the associated static files.
Run it with:
$ ./pastedown [OPTIONS]
Use ./pastedown -h
to see all the available options.
Development
You'll need Reflex and Go as in the installation instructions. Use the following command to run the server and rebuild/rerun it when files change:
$ reflex -d fancy -c Reflexfile
This is also available as
$ make watch
Deployment
Follow the installation instructions, then run this command:
$ make tarball
to build a tarball of all the files you'll need. Copy this to your server and run pastedown with the options you want as before. You may wish to make an init script or more fleshed-out deployment scripts.