awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
aspnet avatar

aspnet/MvcArchived

0
View on GitHub↗

Mvc

ASP.NET Core MVC este un framework model-view-controller utilizat pentru construirea de site-uri web dinamice și API-uri web în ecosistemul .NET. Oferă o arhitectură server-side care separă logica datelor, randarea interfeței utilizator și gestionarea cererilor pentru a menține limitele între straturile aplicației.

Framework-ul include un motor de template-uri Razor pentru încorporarea codului în pagini HTML pentru a genera conținut web dinamic. De asemenea, funcționează ca un framework API web RESTful pentru crearea de servicii HTTP scalabile care livrează date structurate clienților printr-o interfață de rețea standardizată.

Sistemul gestionează procesarea cererilor printr-un pipeline de middleware și utilizează rutarea bazată pe acțiuni pentru a mapa cererile HTTP primite la metode specifice de controller. De asemenea, suportă dezvoltarea aplicațiilor prin model binding, un container de injecție de dependențe și opțiuni de găzduire web server-side.

Căutare AI

Explorează mai multe repository-uri excelente

Descrie ce ai nevoie în limbaj simplu — AI-ul sortează mii de proiecte open source selectate în funcție de relevanță.

Start searching with AI

Features

  • Model-View-Controller Patterns - Implements the model-view-controller pattern to decouple data logic, user interface rendering, and request handling.
  • HTTP Service Frameworks - Provides a framework for building scalable HTTP services and web APIs that deliver structured data.
  • Dependency Injection Containers - Provides a built-in container for managing object lifecycles and resolving dependencies through constructor-based injection.
  • Model-View-Controller Frameworks - Uses a framework implementation of the MVC pattern to separate data, presentation, and control logic.
  • C# Markup Engines - Provides the Razor engine for embedding C# code into HTML templates to generate dynamic web content.
  • ASP.NET Core Application Frameworks - Serves as an architectural framework for building dynamic websites and enterprise solutions on the .NET stack.
  • HTML Templating Engines - Includes a templating engine that processes C# embedded in HTML to produce dynamic web content.
  • Middleware Pipelines - Uses a modular pipeline of components to intercept and process HTTP requests and responses.
  • REST API Frameworks - Provides a framework for building structured HTTP endpoints that process parameters and return serialized data.
  • REST APIs - Provides interfaces for creating programmatic RESTful web services using standard HTTP methods.
  • Controller-Action Routing - Implements a system for mapping incoming HTTP requests directly to specific controller methods via route templates.
  • Dynamic View Rendering - Generates dynamic HTML responses by integrating a view engine with server-side logic.
  • Request Parameter Binding - Automatically maps data from HTTP request parameters and bodies into strongly typed C# objects.
5,574 stele·2,099 fork-uri·C#·Apache-2.0·7 vizualizări

Istoric stele

Graficul istoricului de stele pentru aspnet/mvcGraficul istoricului de stele pentru aspnet/mvc

Întrebări frecvente

Ce face aspnet/mvc?

ASP.NET Core MVC este un framework model-view-controller utilizat pentru construirea de site-uri web dinamice și API-uri web în ecosistemul .NET. Oferă o arhitectură server-side care separă logica datelor, randarea interfeței utilizator și gestionarea cererilor pentru a menține limitele între straturile aplicației.

Care sunt principalele funcționalități ale aspnet/mvc?

Principalele funcționalități ale aspnet/mvc sunt: Model-View-Controller Patterns, HTTP Service Frameworks, Dependency Injection Containers, Model-View-Controller Frameworks, C# Markup Engines, ASP.NET Core Application Frameworks, HTML Templating Engines, Middleware Pipelines.

Care sunt câteva alternative open-source pentru aspnet/mvc?

Alternativele open-source pentru aspnet/mvc includ: codeigniter4/codeigniter4 — CodeIgniter is a PHP web framework built on the Model-View-Controller pattern, designed for building full-stack web… nancyfx/nancy — Nancy is a lightweight .NET HTTP web framework used for building web services and APIs on .NET and Mono. Its core… dodyg/practical-aspnetcore — This project is a comprehensive sample library and implementation guide for ASP.NET Core. It provides a collection of… spring-attic/spring-mvc-showcase — This project is a showcase application and reference implementation for the Spring MVC framework. It serves as a… top-think/think — Think is a PHP web framework and object-relational mapper designed for building web applications. It functions as a… zendframework/zendframework — Zend Framework is a comprehensive set of decoupled components for building modular, event-driven web applications. It…

Alternative open-source pentru Mvc

Proiecte open-source similare, clasificate după numărul de funcționalități comune cu Mvc.
  • codeigniter4/codeigniter4Avatar codeigniter4

    codeigniter4/CodeIgniter4

    5,924Vezi pe GitHub↗

    CodeIgniter is a PHP web framework built on the Model-View-Controller pattern, designed for building full-stack web applications. It provides a lightweight toolkit with minimal configuration, organizing application logic into controllers, models, and views for clean separation of concerns. The framework includes a fluent query builder for constructing SQL statements programmatically, PSR-4 autoloading with namespace mapping, and a service-based dependency injection container for managing shared class instances. The framework distinguishes itself through its comprehensive set of built-in tools

    PHPcodeignitercodeigniter4framework-php
    Vezi pe GitHub↗5,924
  • nancyfx/nancyAvatar NancyFx

    NancyFx/Nancy

    7,104Vezi pe GitHub↗

    Nancy is a lightweight .NET HTTP web framework used for building web services and APIs on .NET and Mono. Its core identity consists of a routing system for matching URL paths to handlers, a content negotiation engine for selecting response data formats, and a dependency injection container for resolving module requirements. The framework provides a cross-platform web host abstraction that allows applications to run within various web servers or as standalone self-hosted processes. It further decouples components by mapping requested service types to specific implementations at runtime. The s

    C#c-sharpdotnetdotnet-core
    Vezi pe GitHub↗7,104
  • dodyg/practical-aspnetcoreAvatar dodyg

    dodyg/practical-aspnetcore

    10,382Vezi pe GitHub↗

    This project is a comprehensive sample library and implementation guide for ASP.NET Core. It provides a collection of practical examples and projects that demonstrate how to build web applications, RESTful APIs, and high-performance services. The repository focuses on a variety of architectural patterns, including the development of Minimal APIs, contract-first gRPC services, and real-time communication using WebSockets and Server-Sent Events. It includes detailed implementations for user identity and security, such as token-based authentication and CSRF protection. The codebase covers a bro

    C#asp-net-coreaspnet-coreaspnetcore
    Vezi pe GitHub↗10,382
  • spring-attic/spring-mvc-showcaseAvatar spring-attic

    spring-attic/spring-mvc-showcase

    4,974Vezi pe GitHub↗

    This project is a showcase application and reference implementation for the Spring MVC framework. It serves as a demonstration of how to build web applications by separating business logic from user interfaces using a model-view-controller architectural pattern. The application provides examples of HTTP request handling, including the capture of request data, the processing of file uploads, and the generation of formatted HTTP responses. It implements REST API endpoints that map requests to handler methods and return data in formats such as JSON and XML. The project covers core web developme

    Java
    Vezi pe GitHub↗4,974
Vezi toate cele 30 alternative pentru Mvc→