I have a boiler with Express and Passport on the server and Ember on the client: https://github.com/mgenev/Full-Stack-JS-Nodember
Currently, I’m handling auth server side and then strapping the logged in user to my server index template, from there ember picks it up from the global namespace.
It seems like this is not the proper way to do this with ember and is limiting me in a variety of ways. I also suspect it’s not that secure. What is a good solution that is also a proven secure way for single page ember apps?