Real-time Web Apps with Volt in Ruby

Thanks for the article on volt :slight_smile: One thing, in your demo code, when you change to using store, you need to either reference store directly in the views:

store._bookmarks

or you need to set the controllers model to be :store

class MainController < Volt::ModelController
  model :store

  ...
end

Also, Volt has realtime updates like Meteor. We do things a bit different implementation, but the end result is the same, updates are pushed to clients and the DOM updates when the data changes. Let me know if thereโ€™s anything I can help clarify.

Again, thanks for the great article!

Ryan (volt framework creator)

1 Like