Download from Github NOT npm.
Nuxt IAM, which stands for Nuxt Identity and Access Management, is an authentication and authorization framework for Nuxt that allows you to secure your app with industry best practices. Nuxt IAM, adds authentication and authorization logic to your Nuxt app.
See a fully functional example app.
nuxt-iam-showcase.mp4
Nuxt IAM is a Nuxt app that contains the following authentication and authorization features:
- ✔️ user registration with email and password
- ✔️ user login with email and password
- ✔️ user login/registration with Google
- ✔️ user password reset
- ✔️ user dashboard
- ✔️ user password change
- ✔️ user profile/account delete
- ✔️ admin user management
- ✔️ admin token management
It is a full featured Nuxt 3 app.
For full documentations, go to Nuxt IAM documentation
Simply clone the Github repo, fork it, or download it.
Nuxt IAM is a Nuxt application and comes ready to run. All you need to add is a database.
- Please install Node if you don't already have it. The recommended Node version is 16.16 or greater
- Please install Yarn package manager. (You can also use npm if you like, but we prefer Yarn)
- Clone, fork, or download the repo from
https://github.com/jeremycoder/nuxt-iam
, and navigate to the root directory. - Copy the
.env.example
file and create a.env
file - Run
yarn
oryarn install
. - Add your database information to your
.env
file. Nuxt IAM curently supports MySQL, but can be modified to support other databases. See Prisma for more information. - Connect your app to your database by running
npx prisma migrate dev
. Name your migrationinitial_migration
or something similar - Run
yarn dev
, and you're good to go!
More configuration is required if you need to send emails and use Google authentication.
Learn more about how Nuxt IAM works by looking at the concepts.
Check out the sample app here: https://nuxt-iam.vercel.app/iam/
For documentation: https://nuxt-iam.vercel.app/iam/docs