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 fork of Topaz's paste service, with a reworked design and a few additional features (syntax highlighting, line numbers, embedding...)
When you click on "Generate Link", NoPaste compresses the whole text using the
LZMA algorithm, encodes it in
Base64, and puts it in the optional fragment, at the end of the URL: nopaste.ml/#<your data goes here>
When you open a link which contains data, NoPaste decodes the fragment, decompresses it, 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