Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kzamanbd/nuxt-auth
A simple nuxt 3 authentication boilerplate using cookies session
https://github.com/kzamanbd/nuxt-auth
nitro nuxt typescript vite
Last synced: 3 days ago
JSON representation
A simple nuxt 3 authentication boilerplate using cookies session
- Host: GitHub
- URL: https://github.com/kzamanbd/nuxt-auth
- Owner: kzamanbd
- Created: 2023-05-22T16:47:45.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-22T18:43:53.000Z (6 months ago)
- Last Synced: 2024-05-22T18:48:10.720Z (6 months ago)
- Topics: nitro, nuxt, typescript, vite
- Language: Vue
- Homepage: https://nuxt-auth-jwt.vercel.app
- Size: 696 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Minimal Starter
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install# npm
npm install# pnpm
pnpm install
```## 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
```Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.