Crates.io | routerify-cors |
lib.rs | routerify-cors |
version | 3.0.0 |
source | src |
created_at | 2020-05-02 12:45:46.103091 |
updated_at | 2022-01-02 12:13:49.82951 |
description | A Routerify middleware which enables CORS. |
homepage | https://github.com/routerify/routerify-cors |
repository | https://github.com/routerify/routerify-cors |
max_upload_size | |
id | 236562 |
size | 25,540 |
A Routerify
middleware which enables CORS
.
Add this to your Cargo.toml
:
[dependencies]
routerify = "3"
routerify-cors = "3"
use hyper::{Body, Request, Response, Server};
use routerify::{Router, RouterService};
// Import the CORS crate.
use routerify_cors::enable_cors_all;
use std::{convert::Infallible, net::SocketAddr};
// A handler for "/" page.
async fn home_handler(_: Request<Body>) -> Result<Response<Body>, Infallible> {
Ok(Response::new(Body::from("Home page")))
}
// Create a router.
fn router() -> Router<Body, Infallible> {
Router::builder()
// Attach the CORS middleware.
.middleware(enable_cors_all())
.get("/", home_handler)
.build()
.unwrap()
}
#[tokio::main]
async fn main() {
let router = router();
// Create a Service from the router above to handle incoming requests.
let service = RouterService::new(router).unwrap();
// The address on which the server will be listening.
let addr = SocketAddr::from(([127, 0, 0, 1], 3001));
// Create a server by passing the created service to `.serve` method.
let server = Server::bind(&addr).serve(service);
println!("App is running on: {}", addr);
if let Err(err) = server.await {
eprintln!("Server error: {}", err);
}
}
Your PRs and suggestions are always welcome.