https://github.com/jglchen/firebase-auth-email
An authentication system with Firebase Email Passwordless Link using a signed and encrypted cookie to store session data.
https://github.com/jglchen/firebase-auth-email
docker firebase firebase-auth nextjs typescript useswr
Last synced: about 2 months ago
JSON representation
An authentication system with Firebase Email Passwordless Link using a signed and encrypted cookie to store session data.
- Host: GitHub
- URL: https://github.com/jglchen/firebase-auth-email
- Owner: jglchen
- Created: 2023-01-10T02:43:26.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-10T02:21:32.000Z (over 1 year ago)
- Last Synced: 2025-01-20T16:25:23.105Z (11 months ago)
- Topics: docker, firebase, firebase-auth, nextjs, typescript, useswr
- Language: CSS
- Homepage: https://firebase-auth-email.vercel.app
- Size: 577 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Firebase Email Passwordless Link Authentication
This example creates an authentication system that uses a **signed and encrypted cookie to store session data**. It uses current best practices as for authentication in the Next.js ecosystem, we use **`useUser` custom hook** together with [swr](https://swr.vercel.app/) for data fetching.
- Firebase Authentication with Email Passwordless Link is used to authenticate users.
- Session data is signed and encrypted in a cookie.
**iOS** and **Android** mobile apps are also delivered. The apps are developed with **React Native**, anyone who is interested can test the development builds with [iOS Simulator Build](https://expo.dev/accounts/jglchen/projects/firebase-auth-email/builds/0f15f092-b8d8-4bc1-ac03-bf703c0d3edd) and [Android Internal Distribution Build](https://expo.dev/accounts/jglchen/projects/firebase-auth-email/builds/fb497610-636a-48ef-8686-725e40d19ed1). If the build storage link has expired, please go to [https://projects-jglchen.vercel.app/en/contact](https://projects-jglchen.vercel.app/en/contact) to request build files.
### [View the App](https://firebase-auth-email.vercel.app)
### [App GitHub](https://github.com/jglchen/firebase-auth-email)
### Docker: docker run -p 3000:3000 jglchen/firebase-auth-email
### [iOS Simulator Build](https://expo.dev/accounts/jglchen/projects/firebase-auth-email/builds/0f15f092-b8d8-4bc1-ac03-bf703c0d3edd)
### [Android Internal Distribution Build](https://expo.dev/accounts/jglchen/projects/firebase-auth-email/builds/fb497610-636a-48ef-8686-725e40d19ed1)
### [React Native GitHub](https://github.com/jglchen/react-native-firebase-auth-email)