Hi there, working on a project that is built on the sessionless web<p>Was curious if anyone had recommendations, places to start, for building sessionless web apps?
What do you mean by sessionless?<p>Do you mean storing everything in an encrypted-and-authenticated JSON Web Token? Check out Slim 3.0 when it gets released (coming soon I hear).<p>Do you mean no sessions and no cookies, ever? You can use any stack, really. Basic PHP does this by default if you don't invoke session_start() anywhere.