- SSR (Server-Side Rendering): Server returns HTML for a route. Browser may later attach JS (“hydrate”) for interactivity.
- SPA (Single-Page App): Server returns a shell (HTML + JS bundle). JS handles routing/data on the client; page doesn’t reload.
- MPA (Multi-Page App): Traditional pages; each URL returns fresh HTML (often SSR).
- MVC: Architectural pattern (Model–View–Controller). Not tied to rendering mode—just organization.
- Hydration: Client JS attaches event handlers to server-rendered HTML to make it interactive.
- BFF (Backend for Frontend): A backend tailored to a specific UI, often aggregating multiple services.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Linkedin = { | |
| config: { | |
| scrollDelay: 3000, | |
| actionDelay: 5000, | |
| nextPageDelay: 5000, | |
| // set to -1 for no limit | |
| maxRequests: -1, | |
| totalRequestsSent: 0, | |
| // set to false to skip adding note in invites | |
| addNote: true, |