killian.s
08/04/2021, 5:03 PMjavascript
app.post("/users/signup", async (req,res) => {
"Create a user (Contains Email, Password(Hashed) and Birthday), and add it to the database"
})
app.post("/users/login", async (req,res) => {
"Sign the user in, and return a JWT/SuperTokens Alternative, so it can interact with the rest of the API which require you to be logged in"
})
Would this be possible with Supertokens, and is there any tuts or part of them recipies?