Auth.js (NextAuth)

npm package (previously NextAuth, and previously auth-next.js)

might not be fully supported for user:pass authentication and implement on Express server. Investigate more on this tho.

works best for Nextjs fullstack project.

session strategies

you can implement different session strategies with this lib.

JWT

is the default
when user sign in, a HttpOnly(making it impossible for client js to access it) cookie is stored on his browser.

Database Sessions

Authjs can create sessions in a database.
SessionID is saved on a HttpOnly cookie.
When user signs out, session is deleted from the DB.