XBin is a simple Pastebin clone written in Go (Golang). It allows users to store and share text snippets easily. The application provides a RESTful API for creating, reading, and deleting pastes, as well as a web interface for easy interaction.
- Create Pastes: Store text snippets with optional expiration times.
- Read Pastes: Retrieve pastes using a unique URL.
- Delete Pastes: Remove pastes manually or automatically after expiration.
- RESTful API: Integrate with other applications using the provided API.
- Web Interface: A simple web interface for creating and viewing pastes.
- Go 1.23 or higher
- Git
-
Clone the repository:
git clone https://github.com/yourusername/xbin.git cd xbin
-
Build the application:
go build -o xbin
-
Run the application:
./xbin
By default, the application will start on
http://localhost:8080
.
-
Create a Bin:
- Navigate to
http://localhost:8080
. - Enter your text in the provided textarea.
- Optionally, set an expiration time.
- Click "Bin".
- Navigate to
-
View a Bin:
- After creating a paste, you will be redirected to a unique URL (e.g.,
http://localhost:8080/bin/abc123
). - You can share this URL with others to allow them to view the paste.
- After creating a paste, you will be redirected to a unique URL (e.g.,
-
Create a Paste:
- Endpoint:
POST /bin
- Body:
- Response:
{ "url": "http://localhost:8080/bin/abc123" }
- Endpoint:
-
Read a Paste:
- Endpoint:
GET /bin/{slug}
- Response: A HTML page with your code.
- Endpoint:
XBin can be configured using command-line flags:
-port
: The port on which the application will run (default:8080
). Can also be specified inPORT
environment variable.-storagePath
: The directory where pastes will be stored (default:./data/bins.db
).-env
: The environment of the application, eitherdev
orprod
(default:prod
).
Also Turso may be used as a database replica provider.
Specify both TUSRO_TOKEN
and TUSRO_URL
environment variables to enable this feature.
An example .env
file is provided.
Example:
./xbin -port 3000 -env dev
Contributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.
This project is licensed under the MIT License. See the LICENSE file for details.