1.1.1 • Published 7 years ago

choo-reload v1.1.1

Weekly downloads
12
License
-
Repository
github
Last release
7 years ago

choo-reload stability

npm version build status downloads js-standard-style

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.

License

MIT