This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Fernando Escolar edited this page May 6, 2021
·
1 revision
RoutingRecords is a small set of tools that help Asp.Net Core developers to program cool and simple APIs in .Net 5. It relies on record
type objects to define inline endpoints:
record Hello()
: Get("/", (req, res) =>
res.SendAsync("Welcome to RoutingRecords"));
Main features:
- Minimalistic: You can define an endpoint in a single line of code.
- Fast: It is faster than other APIs developed with Asp.Net Core MVC.
- Easy: Just worry about writing code for web.
- Portable: It is quite similar to other platforms such as expressjs. So you can easily transfer your existing code to RoutingRecords.
- Cool APIs: All these features together makes your code look cool.