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
- Host: GitHub
- URL: https://github.com/jurassicjs/nuxt3-fullstack-tutorial
- Owner: jurassicjs
- Created: 2022-07-12T20:13:00.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-22T15:20:05.000Z (about 2 years ago)
- Last Synced: 2023-11-07T18:22:01.238Z (almost 2 years ago)
- Topics: fullstack-development, fullstack-javascript, nitro, nuxt3, typescript
- Language: Vue
- Homepage: https://fullstackjack.dev
- Size: 1.66 MB
- Stars: 262
- Watchers: 10
- Forks: 82
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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: 
FullStackJack Youtube Channel.## Connect with me
# 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