Ntex
Ntex is a powerful, pragmatic, and extremely fast framework for composable networking services for Rust
Type Safe
Forget about stringly typed objects, from request to response, everything has types.
Feature Rich
Ntex provides a lot of features out of box. HTTP/2, logging, etc.
Extensible
Easily create your own libraries that any Ntex application can use.
Blazingly Fast
Ntex is blazingly fast. Don't take our word for it -- see for yourself!
Hello World!
Getting started with Ntex is easy. An Ntex app comes with a URL routing system that lets you match on URLs and invoke individual handlers.
Flexible Responders
Handler functions in Ntex can return a wide range of objects that implement the Responder
trait. This makes it a breeze to return consistent responses from your APIs.
Powerful Extractors
Ntex comes with a powerful extractor system that extracts data from the incoming HTTP request and passes it to your view functions. Not only does this make for a convenient API but it also means that your view functions can be synchronous code and still benefit from asynchronous IO handling.