awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 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 vues

No Framework Tutorial

Ce projet est un guide pédagogique axé sur la création d'applications web modulaires utilisant les fonctionnalités natives de PHP. Il démontre comment construire une architecture d'application fonctionnelle à partir de zéro, sans dépendre de frameworks tiers.

Le guide se concentre sur l'implémentation de modèles architecturaux fondamentaux, notamment un routeur de requêtes qui mappe les chemins HTTP entrants vers une logique de contrôleur spécifique, et un conteneur d'injection de dépendances qui gère le cycle de vie des objets et les besoins des classes. En découplant les composants grâce à une résolution automatisée des dépendances, le projet met l'accent sur la maintenabilité et la testabilité dans la conception de logiciels personnalisés.

L'implémentation couvre les mécanismes essentiels des applications web, tels qu'un front-controller pour la gestion des requêtes, un moteur de template pour séparer la logique de présentation du code métier, et une couche centralisée de gestion des erreurs pour traiter les exceptions à l'exécution. Ces composants travaillent ensemble pour offrir une approche structurée de la génération de contenu dynamique et du retour système.

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.

Historique des stars

Graphique de l'historique des stars pour patricklouys/no-framework-tutorialGraphique de l'historique des stars pour patricklouys/no-framework-tutorial

Recherche par IA

Explorez plus de dépôts awesome

Décrivez vos besoins en langage naturel — l'IA classe des milliers de projets open source sélectionnés par pertinence.

Start searching with AI

Collections incluant No Framework Tutorial

Sélections manuelles où No Framework Tutorial apparaît.
  • Projets de création de frameworks web

Alternatives open source à No Framework Tutorial

Projets open source similaires, classés selon le nombre de fonctionnalités partagées avec No Framework Tutorial.
  • bcit-ci/codeigniterAvatar de bcit-ci

    bcit-ci/CodeIgniter

    18,171Voir sur GitHub↗

    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
    Voir sur GitHub↗18,171
  • zendframework/zendframeworkAvatar de zendframework

    zendframework/zendframework

    5,441Voir sur GitHub↗

    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.

    Voir sur GitHub↗5,441
  • dodyg/practical-aspnetcoreAvatar de dodyg

    dodyg/practical-aspnetcore

    10,382Voir sur 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
    Voir sur GitHub↗10,382
  • quarkusio/quarkusAvatar de quarkusio

    quarkusio/quarkus

    15,479Voir sur GitHub↗

    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
    Voir sur GitHub↗15,479
Voir les 30 alternatives à No Framework Tutorial→

Questions fréquentes

Que fait patricklouys/no-framework-tutorial ?

Ce projet est un guide pédagogique axé sur la création d'applications web modulaires utilisant les fonctionnalités natives de PHP. Il démontre comment construire une architecture d'application fonctionnelle à partir de zéro, sans dépendre de frameworks tiers.

Quelles sont les fonctionnalités principales de patricklouys/no-framework-tutorial ?

Les fonctionnalités principales de patricklouys/no-framework-tutorial sont : PHP Application Frameworks, Dependency Injection Containers, Dependency Injection Providers, Dependency Injection, Request Routing, Front-Controller Patterns, Web Request Routers, Error Tracking and Exception Handling.

Quelles sont les alternatives open-source à patricklouys/no-framework-tutorial ?

Les alternatives open-source à patricklouys/no-framework-tutorial incluent : 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…