I am new to ember, but I love what I see so far!
I came across meteor and noticed that they have a feature where they can push hot code directly to the client, which allows for continuous deployment: https://www.meteor.com/blog/2012/02/09/hot-code-pushes
Are there any proof of concepts/examples of implementing hot code pushes in an ember js application?
I understand that meteorjs contains a server part which makes it easy for them to provide this feature, however, I think there might also need to be capabilities (serializing the models etc, reload new app, then unserialize models) on the client to allow this to happen.