An open API service indexing awesome lists of open source software.

https://github.com/jurassicjs/nuxt3-fullstack-tutorial

Full Stack Nuxt App Tutorial
https://github.com/jurassicjs/nuxt3-fullstack-tutorial

fullstack-development fullstack-javascript nitro nuxt3 typescript

Last synced: 2 months ago
JSON representation

Full Stack Nuxt App Tutorial

Awesome Lists containing this project

README

          

## Hi there, Full Stack Jack here
I'm glad you found this awesome repo.

If you'd like a walk through of how nuxt3 and in particular this set up
works,

check out the Full Stack Jack Youtube Channel here :point_right: ![YouTube Channel Subscribers](https://img.shields.io/youtube/channel/subscribers/UCFDF_U_uoKc6MhIZPZKo5CA?label=FullStackJack&style=social)
FullStackJack Youtube Channel.

## Connect with me



github


gmail


youtube

# Nuxt 3 Fullstack Tutorial

Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.

## Demo App
Check out [FullStackJack.dev](https://fullstackjack.dev) to see this code live in action.

## Setup

Make sure to install the dependencies:

```bash
# yarn
yarn install

# npm
npm install

# pnpm
pnpm install --shamefully-hoist
```

## Development Server

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

```bash
npm run dev
```

## Production

Build the application for production:

```bash
npm run build
```

Locally preview production build:

```bash
npm run preview
```

Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.
# nuxt3-fullstack-tutorial