@everyone
Hello
I've checked the node-appwrite package
I got to know the user registration flow
There is no option for user login in node-appwrite
My question is can we use appwrite to replace the auth system of normal MERN Stack application?
Currently I'm doing login and signup functionality in express . When the user login creates the jwt token and passes to the frontend. Every time frontend makes a api call validating the jwt token passed in header
Can we replace the sign-up route with an appwrite ? Basically i did this
But in the login route i get an email and password in my body. I need to call the login method of the appwrite and pass the jwt to the frontend when the login is a success
Then each api call i need to verify the jwt.
Is that possible?