Skip to content

MR-Mostafa/nuxt3-realworld-example-app

Repository files navigation

RealWorld Example App

Nuxt3 codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.

This codebase was created to demonstrate a fully fledged fullstack application built with Nuxt3 including CRUD operations, authentication, routing, pagination, and more.

We've gone to great lengths to adhere to the Nuxt3 community styleguides & best practices.

For more information on how to this works with other frontends/backends, head over to the RealWorld repo.

How it works

Look at the Nuxt 3 documentation to learn more.

Getting started

1. Prerequisites


2. Setup

First, clone this project and make sure to install the dependencies:

# yarn
yarn  install

# npm
npm  install

# pnpm
pnpm  install

3. Development Server

Start the development server on http://localhost:3000

npm  run  dev

4. Production

Build the application for production:

npm  run  build

Locally preview production build:

npm  run  preview

Check out the deployment documentation for more information.