This Nuxt module seamlessly integrates Nuxt with Laravel Fortify and Sanctum in an SSR-friendly way, offering a rich set of authentication features. With this module, you can leverage Laravel Fortify's capabilities and perform both API Token and SPA cookie-based authentication.
💡Notice: You need to install and setup Laravel Fortify, Laravel Sanctum, and fortify-sanctum package in your backend Laravel application. The fortify-sanctum package easily integrates Laravel Fortify's authentication features with Laravel Sanctum
Add nuxt-fortify module to your nuxt project
npx nuxi@latest module add nuxt-fortify
Add the module to your Nuxt project by installing it and configuring it in nuxt.config.js.
// nuxt.config.js
export default {
modules: [
'nuxt-fortify',
],
nuxtFortify: {
baseUrl: 'http://localhost:3000/api',
origin: 'http://localhost:3000',
authMode: 'cookie',
authHome: '/dashboard',
endpoints: {
csrf: '/sanctum/csrf-cookie',
user: '/user',
// other endpoints...
},
features: {
registration: true,
resetPasswords: true,
twoFactorAuthentication: true,
// other features...
}
// other configurations...
}
}
| Key | Data Type | Default Value | Required |
|---|---|---|---|
baseUrl | string | http://localhost:3000/api | Yes |
authMode | string | cookie | Yes |
loginRoute | endpoint | /login | No |
authHome | endpoint | /home | No |
cookieKey | string | XSRF-TOKEN | No |
cookieHeader | string | X-XSRF-TOKEN | No |
tokenStorageKey | string | API-TOKEN | No |
endpoints.csrf | endpoint | /sanctum/csrf-cookie | No |
endpoints.login | endpoint | /login | No |
endpoints.logout | endpoint | /logout | No |
endpoints.user | endpoint | /user | No |
endpoints.tfa.enable | endpoint | /user/two-factor-authentication | No |
endpoints.tfa.disable | endpoint | /user/two-factor-authentication | No |
endpoints.tfa.code | endpoint | /user/two-factor-qr-code | No |
endpoints.tfa.confirm | endpoint | /user/confirmed-two-factor-authentication | No |
endpoints.tfa.recoveryCode | endpoint | /user/two-factor-recovery-codes | No |
endpoints.tfa.challenge | endpoint | /two-factor-challenge | No |
endpoints.register | endpoint | /register | No |
endpoints.resetPassword | endpoint | /forgot-password | No |
endpoints.updatePassword | endpoint | /reset-password | No |
endpoints.confirmPassword | endpoint | /user/confirm-password | No |
endpoints.resendEmailVerificationLink | endpoint | /email/verification-notification | No |
intendedRedirect | boolean | true | No |
features.registration | boolean | true | No |
features.resetPasswords | boolean | true | No |
features.emailVerification | boolean | true | No |
features.updateProfileInformation | boolean | true | No |
features.updatePasswords | boolean | true | No |
features.twoFactorAuthentication | boolean | true | No |
tfaRoute | endpoint | /two-factor-authentication | No |
logLevel | number | 1 | No |
origin | string | http://localhost:3000 | Yes |
| Endpoint Key | Path | Request Method |
|---|---|---|
csrf | /sanctum/csrf-cookie | POST |
login | /login | POST |
logout | /logout | POST |
user | /user | POST |
tfa.enable | /user/two-factor-authentication | POST |
tfa.disable | /user/two-factor-authentication | DELETE |
tfa.code | /user/two-factor-qr-code | GET |
tfa.confirm | /user/confirmed-two-factor-authentication | POST |
tfa.recoveryCode | /user/two-factor-recovery-codes | GET |
tfa.challenge | /two-factor-challenge | POST |
register | /register | POST |
resetPassword | /forgot-password | POST |
updatePassword | /reset-password | POST |
confirmPassword | /user/confirm-password | POST |
resendEmailVerificationLink | /email/verification-notification | POST |
By following these steps and configurations, you'll have a fully integrated Nuxt application with Laravel Fortify and Sanctum, delivering a robust authentication solution. 🚀
We welcome contributions to enhance this module. Here are the steps to contribute:
git clone https://github.com/dev-charles15531/nuxt-forify.git
cd nuxt-fortify
git checkout -b feature-or-bugfix-name
git add .
git commit -m "Description of the feature or fix"
git push origin feature-or-bugfix-name
If you have any questions or need help, feel free to open an issue or contact the maintainer of this repository.
Thank you for contributing! Your efforts are greatly appreciated. 🙌