choo-reload
v1.1.1
Published
Livereloading package for choo
Downloads
34
Readme
choo-reload
Asset reloading package for choo. Reloads CSS, refreshes the page on JS.
Usage
var reload = require('choo-reload')
var choo = require('choo')
var app = choo()
app.use(reload())
app.mount('body')
FAQ
Why not replace all state on JS?
Because you're bound to have memory leaks. Figuring out how to properly close all handlers is tricky - but perhaps we'll eventually get around to solving this (probably major version). Until then: here's the second best thing.
API
reload([url])
Create a new instance of reload. url
defaults to sse
.