**paste is a simple web app for writing & sharing code.** It's my own take on conventional pastebin sites like _pastebin.com_ or _hastebin_. The frontend _(this repository)_ is written using the React framework. The backend data storage is handled by a separate web service called [bytebin](https://github.com/lucko/bytebin). The user-interface is based on the [Monaco Editor](https://microsoft.github.io/monaco-editor/), the engine behind the popular Visual Studio Code text editor. It's quite simple; it supports syntax highlighting, automatic indentation, many supported languages, themes, zooming in/out, linking to specific lines or sections, and more! ## pastes.dev I host a public instance at [pastes.dev](https://pastes.dev). Please feel free to use it to share code/configs/whatever! Please note that the following (very-non-legally worded) [terms of service](https://github.com/lucko/bytebin#public-instances) apply. If you come across any content which is illegal or infringes on copyright, please [get in touch](https://lucko.me/contact) and let me know so I can remove it. Uploaded content is retained for 90 days then deleted. ### pastes.dev API * To **read** content, send a HTTP `GET` request to `https://api.pastes.dev/`. * Replace `` with the id of the paste. * The content is returned in the response body. * The `Content-Type` header is `text/`, where language is the id of the language the paste was saved with. * To **upload** content, send a HTTP `POST` request to `https://api.pastes.dev/post`. * Include the content in the request body. * Specify the language with the `Content-Type: text/` header, and please provide a `User-Agent` header too. * The paste "key" is returned in the `Location` header, or in the response body as a JSON object in the format `{"key": ""}`. The API is powered by the [bytebin](https://github.com/lucko/bytebin) service, so more information about how it works can be found there. ## Host your own It's quite simple to host your own version. ```bash git clone https://github.com/lucko/paste cd paste yarn install # Outputs html/css/js files to /build yarn build # Start a webserver for testing/development yarn start ``` You can then follow the [create-react-app deployment documentation](https://create-react-app.dev/docs/deployment/) for how to host the build output. I personally recommend deploying to the cloud using a service like Netlify instead of hosting on your own webserver. If you really want to self-host (including the bytebin data storage part), I suggest using Docker: ```bash git clone https://github.com/lucko/paste docker compose up -d ``` You should then (hopefully!) be able to access the application at `http://localhost:8080/`.