Tiny http server library using tiny http
You need to provide a error.html file to use when server return 404 error.
This macro is usefull for deploying static files.
rust
route!(get_html => server, "/", ".index.html");
This macro is equal to this
rust
server.add_route(
&Method::Get,
"/",
Box::new(|_| Res::File {
name: "./static/index.html",
ct: "text/html; charset=utf-8",
sc: 200,
}),
);
```rust use httpservertiny::{route, HttpServer, Method, Res};
fn main() -> Result<(), Box
server.handle_requests(Box::new(|req| {
println!("INFO: {} {}", req.method, req.url);
}))
} ```
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hello, World</title>
</head>
<body>
<h1>Hello, world!</h1>
</body>
<script src="index.js"></script>
</html>
javascript
console.log("Hello, world!");
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404</title>
</head>
<body>
404
</body>
</html>