Ad
How Should I Implement Session Storage On Node.js
I'm creating josi, a web framework for node.js. And I'd like to add session storage. What would be the best way to implement this? I'm assuming it probably has to be cookie based, but I'm interested in knowing if any other frameworks have a different approach.
Ad
Answer
I had a look at josi a few days ago. Very nice work!
Other than cookie based, you could use infamous session tokens (e.g. JSESSIONID
, PHPSESSID
and ASPSESSIONID
) and put them in hidden forms or the URL query string.
Cookies are really the best option. They work perfectly for the job.
Ad
source: stackoverflow.com
Related Questions
- → How do I determine if a new ReactJS session and/or Browser session has started?
- → Is this considered to be a custom facade approach in Laravel?
- → Facebook PHP SDK - Graph Error "Authorization code has been used" on page refresh
- → Can I store an access Cookie in a Laravel session?
- → How to call a function when a user logs into the backend?
- → Lumen Request has session app('session') is empty. Redirect not working
- → How long does data last in session in laravel?
- → Class 'AppHttpControllersSession' not found in Laravel 5.2
- → Make session expiration redirect back to login?
- → session disappears when request is sent from fetch
- → Laravel - Session store not set on request
- → Upgrading to Laravel 5.2 invalidates all sessions
- → Set session variables in Laravel
Ad