JonAbrams / synth

The first back-end framework specially designed for single-page web applications
http://www.synthjs.com
MIT License
968 stars 70 forks source link

What would be the best way to implement / add live reloading? #45

Closed rzmz closed 10 years ago

rzmz commented 10 years ago

I really like the Meteor framework for its live reloading. Where should I start to add the same functionality to my Synth app?

JonAbrams commented 10 years ago

By live reloading do you mean refreshing the browser page when source code is altered on disk?

That's a feature I'd like to add to Synth itself. In the meantime, you can use something like this: https://www.npmjs.org/package/node-live-reload

On Sat, Jun 28, 2014 at 8:30 AM, Rasmus Piho notifications@github.com wrote:

I really like the Meteor framework for its live reloading. Where should I start to add the same functionality to my Synth app?

— Reply to this email directly or view it on GitHub https://github.com/JonAbrams/synth/issues/45.

rzmz commented 10 years ago

Thanks, that works.