NoPaste is a client-side paste service which works with no database, and no back-end code
Instead, the data is compressed then stored into a unique URL that can be decoded later. For example, this is the CSS code used by NoPaste
As a result, there is no risk of data being lost, censored or deleted. The whole data stored is in the link and nowhere else! 🤯
Note: This project is a copy of Topaz's paste service, with a reworked design and a few additional features (syntax highlighting, line numbers, line wrapping, embedding...)
When you click on "Generate Link", NoPaste compresses the whole text using the
LZMA algorithm, encodes it in
Base64, and puts it just after the first /
, in the URL: nopaste.ml/<your data goes here>
When you open a link, NoPaste reads, decodes, and decompresses whatever is after the /
, and displays the result in the editor
You can include NoPaste code snippets into your own website by clicking the Embed button and using the generated HTML code
This is what an embedded Paste snippet looks like
Feel free to edit the generated height
and width
attributes, so they suit your needs