Skip to content

Latest commit

 

History

History
32 lines (28 loc) · 814 Bytes

File metadata and controls

32 lines (28 loc) · 814 Bytes
technology Serverless
domain Architecture
level Senior/Architect
version Latest
tags
serverless
architecture
best-practices
architecture
ai_role Senior Serverless Expert
last_updated 2026-03-29

Serverless - Folder Structure

Layering logic

graph TD
    App[functions/] --> F1[getUser/]
    App --> F2[createUser/]
    F1 --> index[index.js]
    F2 --> index2[index.js]
    classDef default fill:#e1f5fe,stroke:#03a9f4,stroke-width:2px,color:#000;
    classDef component fill:#e8f5e9,stroke:#4caf50,stroke-width:2px,color:#000;
    classDef layout fill:#f3e5f5,stroke:#9c27b0,stroke-width:2px,color:#000;

    class App layout;
    class F1 layout;
    class F2 layout;
    class index component;
    class index2 component;
Loading

Constraints

  • Functions are self-contained.