#Is a nuxt3 fullstack framework ?
4 messages · Page 1 of 1 (latest)
Hi @knotty heath. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
Yes, Nuxt 3 is indeed a full-stack framework that allows you to build both the front-end and back-end of your application. You can certainly use Nuxt 3 to create a management system with both client-side and server-side functionality. Here's why:
-
Nuxt 3 provides built-in server-side rendering (SSR) capabilities, which means it can handle both front-end and back-end logic Docs > Getting-started > Introduction > Server-Side Rendering (https://nuxt.com/docs/getting-started/introduction#server-side-rendering).
-
It includes a server engine called Nitro, which allows you to create API endpoints and server-side logic directly within your Nuxt application Docs > Getting-started > Server (https://nuxt.com/docs/getting-started/server).
-
You can create API routes in the
server/api/directory, which will be automatically generated as server endpoints Docs > Getting-started > Introduction > Server-Side Rendering (https://nuxt.com/docs/getting-started/introduction#server-side-rendering). -
Nuxt 3 supports full-stack development, allowing you to handle data fetching, API creation, and even generate static server-side content like sitemaps or RSS feeds - all from a single codebase Docs > Getting-started > Server (https://nuxt.com/docs/getting-started/server).
-
The framework provides data-fetching utilities that are SSR-compatible, making it easier to manage data flow between the front-end and back-end Docs > Getting-started > Introduction (https://nuxt.com/docs/getting-started/introduction).