A rendering strategy where the server generates the full HTML for each page request before sending it to the browser. SSR improves initial load performance and SEO because search engines receive complete HTML instead of an empty shell that requires JavaScript to populate. Next.js (used by GenMB's frontend) supports SSR natively.
A rendering strategy where HTML pages are generated at build time rather than on each request. The resulting static files are served from a CDN, making SSG sites extremely fast and cheap to host. Best suited for content that changes infrequently — blogs, documentation, marketing pages.
Building both the frontend (user interface) and backend (server, database, APIs, authentication) of a web application. GenMB generates full-stack applications including UI, database schemas, CRUD operations, authentication flows, and API endpoints from a single prompt.
Put these concepts into practice. Describe your app idea and let GenMB generate the code.
Try GenMB Free