golang 專案結構規劃
golang 的專案結構建議,我覺得 go 最佳實踐法比較見仁見智,蠻主觀的 ! Go Best Practices: How to code comfortably go-clean-arch Standard Go Project Layout
golang 的專案結構建議,我覺得 go 最佳實踐法比較見仁見智,蠻主觀的 ! Go Best Practices: How to code comfortably go-clean-arch Standard Go Project Layout
前陣子被同事問了 Angular Project 的專案結構建議要怎麼擺放比較有彈性!? 說實在的,從 angular v1(angularJS) ~ angular v9 (2019.12),就是看官方的 Style guide (大概就是長那樣),而且在開發版本提升的同時,為了因應新 feature 的加入也有可能異動。 查了別人開發架構加上自己的經驗大概是是這樣子,根據 (1)一次性? (2) 會持續大於 30/40個 component嗎?(3)是否需多人共同維護, 是否需要其他 project dependency ? (4) 是否需要 lazy-loading ? 中小型專案 | 簡易版 如果是一次性開發,且 lazy-loading module的需求很低的狀態下。 |-- app/ |-- core/ # Core components |-- [+] authentication/ |-- [+] services/ |-- [+] guards/ |-- [+] interceptors |-- [+] models/ |-- users # Users Components |-- [+] user-edit/ |-- [+] user-view/ |-- [+] user-list/ ├── user....