multiple-entry-points

仓库创建 2026年5月22日最近提交 21 小时前SkillHot 收录 8 小时前
▸ 精选理由

适合需拆分路由与模块边界的中大型项目

这个 Skill 做什么

针对 web 应用的多入口点架构模式与实现建议

讲清 Multiple Entry Points 架构怎么做:把不同流量分到不同入口(而不是全丢给单个 Front Controller)。在需要按域/模块隔离路由、按团队拆分代码或优化首屏性能时用。特点是给出设计原则、实现建议和利弊对比,帮助在单入口和多入口间做选择。

▸ 展开 SKILL.md 英文原文

Expert guide for designing and implementing Multiple Entry Points architecture in web applications / Panduan ahli untuk merancang dan mengimplementasikan arsitektur Multiple Entry Points pada aplikasi web.

开发编程多入口前端部署通用
41
Stars
7
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/roedyrustam/vibes-plug/main/skills/multiple-entry-points/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/roedyrustam/vibes-plug/main/skills/multiple-entry-points/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Multiple Entry Points Architecture

[English](#english) | [Bahasa Indonesia](#bahasa-indonesia)

---

<a name="english"></a>
## English

### Description
This skill outlines the architectural pattern of using Multiple Entry Points in a web application. Instead of forcing all traffic through a single Front Controller (like a monolithic `index.php`), the application separates traffic logically into distinct entry files such as `index.php` (public), `admin.php`, and `api.php`. This provides stronger isolation, optimized loading, and stricter security boundaries.

### Core Principles of Multiple Entry Points
1. **Logical Separation**: Isolate different application domains into their own entry f
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有