rusty-render 0.1.14

A simple Rust-based server that listens on a TCP socket and renders HTML pages dynamically based on incoming requests.
Documentation
# rusty-render


`rusty-render` is a simple Rust-based server that renders HTML pages dynamically on incoming TCP requests. It listens on a specified address and serves the requested pages.

## Features


- **TCP Listener:** The server listens for incoming connections on a specific address and port (`port`).
- **HTML Rendering:** The server renders HTML pages dynamically for each incoming request using the `render` crate.
- **Simple and Lightweight:** This server provides a minimalistic setup to demonstrate basic HTML rendering in Rust.

## Requirements


- **Rust:** You need to have the latest version of [Rust]https://www.rust-lang.org/ installed.
- **Cargo:** `Cargo` is the Rust package manager used for building and running the project.

## Installation


To set up and run the project:

1. **Clone the Repository**

```bash
git clone https://github.com/HashiramaSenjuhari/rusty-render
cd rusty-render
```