What is Server-Side?
Code or processing that happens on the server before sending results to the browser
Why It Matters
Server-side processing keeps sensitive logic secure and handles tasks browsers can't do
Real-World Example
Checking a user's password against the database (never done in the browser)
Related Terms
Learn More at buildDay Melbourne
Want to understand these concepts hands-on? Join our one-day workshop and build a real web application from scratch.
Related Terms
Backend
The behind-the-scenes part of an application that handles data, logic, and communication with databases
SSR (Server-Side Rendering)
Generating web pages on the server for each request, then sending complete HTML to the browser
Client-Side
Code or processing that happens in the user's browser
Cron Job
A scheduled task that runs automatically at specific times or intervals
Background Job
A task that runs behind the scenes without making users wait for it to complete
Middleware
Code that runs between receiving a request and sending a response, often handling common tasks