diff --git a/src/data/roadmaps/aspnet-core/content/minimal-apis@ipABerBcM9zCte9pYaIse.md b/src/data/roadmaps/aspnet-core/content/minimal-apis@ipABerBcM9zCte9pYaIse.md index 19fa64730..aabef3e0c 100644 --- a/src/data/roadmaps/aspnet-core/content/minimal-apis@ipABerBcM9zCte9pYaIse.md +++ b/src/data/roadmaps/aspnet-core/content/minimal-apis@ipABerBcM9zCte9pYaIse.md @@ -1 +1,6 @@ -# Minimal APIs \ No newline at end of file +# Minimal APIs +Minimal APIs in ASP.NET Core are a simple way to create web APIs with less code. Instead of using controllers and many configurations, you can define API routes directly in the application’s startup file. + +They are lightweight, fast, and easy to use, making them great for small applications, microservices, and quick prototypes. You can still use features like dependency injection, middleware, and authentication, but with a simpler approach. + +Minimal APIs are best for simple and small applications.