awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
PatrickLouys avatar

PatrickLouys/no-framework-tutorial

0
View on GitHub↗
1,556 Stars·188 Forks·MIT·12 Aufrufe

No Framework Tutorial

Dieses Projekt ist ein Lernleitfaden für den Aufbau modularer Webanwendungen mit nativen PHP-Funktionen. Es zeigt, wie man eine funktionale Anwendungsarchitektur von Grund auf ohne externe Frameworks von Drittanbietern erstellt.

Der Leitfaden konzentriert sich auf die Implementierung zentraler Architekturmuster, darunter ein Request-Router, der eingehende HTTP-Pfade auf spezifische Controller-Logik abbildet, sowie ein Dependency-Injection-Container, der Objektlebenszyklen und Klassenanforderungen verwaltet. Durch die Entkopplung von Komponenten mittels automatisierter Abhängigkeitsauflösung betont das Projekt Wartbarkeit und Testbarkeit im individuellen Softwaredesign.

Die Implementierung deckt wesentliche Mechanismen von Webanwendungen ab, wie einen Front-Controller für die Request-Verarbeitung, eine Template-Engine zur Trennung von Präsentationslogik und Business-Code sowie eine zentrale Fehlerbehandlungsschicht für Laufzeitausnahmen. Diese Komponenten arbeiten zusammen, um einen strukturierten Ansatz für die dynamische Content-Generierung und Systemrückmeldungen zu bieten.

Features

  • PHP Application Frameworks - Demonstrates the construction of modular web application architectures using native language features.
  • Dependency Injection Containers - Provides a central container for managing object lifecycles and dependency resolution.
  • Dependency Injection Providers - Implements dependency injection to decouple components and manage service lifecycles.
  • Dependency Injection - Automates the provision of class dependencies to decouple components and improve testability.
  • Request Routing - Maps incoming HTTP request paths to specific controller logic for dynamic content delivery.
  • Front-Controller Patterns - Implements a single entry point pattern to centralize request handling and dispatching logic.
  • Web Request Routers - Implements a custom request router that maps incoming HTTP paths to specific controller logic without external framework dependencies.
  • Error Tracking and Exception Handling - Intercepts and processes runtime exceptions to provide consistent user feedback during failures.
  • Component-Based Dependency Management - Manages complex application dependencies through automated injection to simplify system configuration.
  • Global Exception Handlers - Provides a centralized layer for intercepting and formatting application-wide runtime exceptions.
  • Service-Layer Architectures - Organizes application logic into decoupled services to separate business operations from presentation.
  • HTML Template Renderers - Provides a template engine that merges dynamic application data with HTML layout files to separate presentation from business logic.
  • Server-Side Template Engines - Ships a server-side template engine for generating dynamic HTML responses.
  • PHP Error-to-Exception Converters - Provides patterns for converting runtime errors into exceptions to protect sensitive system information.
  • HTML Content Renderers - Renders dynamic HTML content by combining application data with modular templates.
  • Custom Web Routes - Implements custom path parsing logic to route web traffic without external framework dependencies.

Star-Verlauf

Star-Verlauf für patricklouys/no-framework-tutorialStar-Verlauf für patricklouys/no-framework-tutorial

KI-Suche

Entdecke weitere awesome Repositories

Beschreibe in einfachen Worten, was du brauchst — die KI bewertet tausende kuratierte Open-Source-Projekte nach Relevanz.

Start searching with AI

Kuratierte Suchen mit No Framework Tutorial

Handverlesene Sammlungen, in denen No Framework Tutorial vorkommt.
  • Projekte zum Bau von Web-Frameworks

Häufig gestellte Fragen

Was macht patricklouys/no-framework-tutorial?

Dieses Projekt ist ein Lernleitfaden für den Aufbau modularer Webanwendungen mit nativen PHP-Funktionen. Es zeigt, wie man eine funktionale Anwendungsarchitektur von Grund auf ohne externe Frameworks von Drittanbietern erstellt.

Was sind die Hauptfunktionen von patricklouys/no-framework-tutorial?

Die Hauptfunktionen von patricklouys/no-framework-tutorial sind: PHP Application Frameworks, Dependency Injection Containers, Dependency Injection Providers, Dependency Injection, Request Routing, Front-Controller Patterns, Web Request Routers, Error Tracking and Exception Handling.

Welche Open-Source-Alternativen gibt es zu patricklouys/no-framework-tutorial?

Open-Source-Alternativen zu patricklouys/no-framework-tutorial sind unter anderem: bcit-ci/codeigniter — CodeIgniter is an open-source PHP web framework and application toolkit designed for server-side development. It… zendframework/zendframework — Zend Framework is a comprehensive set of decoupled components for building modular, event-driven web applications. It… dodyg/practical-aspnetcore — This project is a comprehensive sample library and implementation guide for ASP.NET Core. It provides a collection of… quarkusio/quarkus — Quarkus is a Kubernetes-native Java framework designed for building high-performance, memory-efficient applications.… top-think/think — Think is a PHP web framework and object-relational mapper designed for building web applications. It functions as a… slimphp/slim — Slim is a PHP micro-framework designed for building web applications and APIs by routing incoming network requests to…

Open-Source-Alternativen zu No Framework Tutorial

Ähnliche Open-Source-Projekte, sortiert nach der Anzahl der gemeinsamen Funktionen mit No Framework Tutorial.
  • bcit-ci/codeigniterAvatar von bcit-ci

    bcit-ci/CodeIgniter

    18,171Auf GitHub ansehen↗

    CodeIgniter is an open-source PHP web framework and application toolkit designed for server-side development. It implements a model-view-controller architecture to separate internal data representations from the user interface. The framework utilizes a front-controller architecture to direct all incoming web requests through a single entry point for URI parsing and request dispatching. It includes a dependency injection container to resolve class dependencies and manage the lifecycle of core system components. The toolkit provides capabilities for routing management, database interactions, a

    PHPphpphp-frameworkphp7
    Auf GitHub ansehen↗18,171
  • zendframework/zendframeworkAvatar von zendframework

    zendframework/zendframework

    5,441Auf GitHub ansehen↗

    Zend Framework is a comprehensive set of decoupled components for building modular, event-driven web applications. It implements an MVC architecture to separate business logic from the user interface and provides a structured request-handling system through a sequential middleware pipeline. The project features a factory-driven dependency injection container to automate object instantiation and manage class lifecycles. It also includes a comprehensive security suite for verifying user identities and restricting resource access using access control lists and role-based access control adapters.

    Auf GitHub ansehen↗5,441
  • dodyg/practical-aspnetcoreAvatar von dodyg

    dodyg/practical-aspnetcore

    10,382Auf GitHub ansehen↗

    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
    Auf GitHub ansehen↗10,382
  • quarkusio/quarkusAvatar von quarkusio

    quarkusio/quarkus

    15,479Auf GitHub ansehen↗

    Quarkus is a Kubernetes-native Java framework designed for building high-performance, memory-efficient applications. It utilizes ahead-of-time native compilation to transform Java code into standalone, optimized binaries that eliminate the need for a virtual machine, enabling rapid startup and reduced memory consumption. By performing code augmentation during the build phase, it shifts heavy processing tasks away from runtime, ensuring that applications are optimized for cloud-native environments. The framework distinguishes itself through a unified approach to reactive and imperative program

    Javacloud-nativehacktoberfestjava
    Auf GitHub ansehen↗15,479
  • Alle 30 Alternativen zu No Framework Tutorial anzeigen→