#Session management in Nuxt3

4 messages · Page 1 of 1 (latest)

alpine orbit
#

I am investigating doing a port from SvelteKit to Nuxt 3 to evaluate what works better. The major components I need is i18n and some recommended session management (id in a cookie, and rest of the data serverside in a KV-store). Is there a recommended way of doing Session management with Nuxt?

hybrid sphinx
alpine orbit
#

In Svelte I fill some store value (App.Locals) based on cookies in hooks (on every request). So I think I should be ready with some middleware and the set/useCookie. Thanks a lot!