sunng87 / handlebars-iron

Handlebars middleware for Iron web framework
MIT License
119 stars 20 forks source link

Add a development mode where templates are always reloaded from disk #15

Closed gsingh93 closed 9 years ago

gsingh93 commented 9 years ago

If I make a change in a template, I currently have to restart the server to see the change appear. It would be nice if there was some development mode that always loaded the latest version of the template from disk, so I wouldn't have to rerun my binary every time I make a template change.

sunng87 commented 9 years ago

Have you tried Live reload mode? https://github.com/sunng87/handlebars-iron#live-reload

gsingh93 commented 9 years ago

Oh, that's exactly what I wanted. Sorry about the noise.