Github Actions Status crates.io Documentation MIT

routerify-cors

A Routerify middleware which enables CORS.

Docs

Install

Add this to your Cargo.toml:

toml [dependencies] routerify = "2" routerify-cors = "2"

Example

```rust use hyper::{Body, Request, Response, Server}; use routerify::{Router, RouterService}; // Import the CORS crate. use routerifycors::enablecors_all; use std::{convert::Infallible, net::SocketAddr};

// A handler for "/" page. async fn homehandler(: Request) -> Result, Infallible> { Ok(Response::new(Body::from("Home page"))) }

// Create a router. fn router() -> Router { Router::builder() // Attach the CORS middleware. .middleware(enablecorsall()) .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);
}

}

```

Contributing

Your PRs and suggestions are always welcome.