client-reloader

1.2.2 • Public • Published

client-reloader

Reload client sessions, when they connect with an old client js. recommended use with reconnect and shoe or other client-side stream api.

Example

Client

var reconnect = require('reconnect')
var reloader  = require('client-reloader')

reconnect(reloader(function (stream) {
  //your good! use the stream!
}, meta)).connect('/shoe')

When the client reconnects, the server will send the current version, if it is different to the server version, the client will reload.

Server

var shoe = require('shoe')
var reloader = require('client-reloader')
var ecstatic = require('ecstatic')

shoe(reloader(function (stream) {
  //the client has successfull connected, 
  //with the right version!

  //also, here is the metadata passed from the client.
  console.log(stream.meta)
}), VERSION).install(
  //serve static files.
  http.createServer(ecstatic(__dirname+'/static'))
  .listen(PORT)
, '/shoe')

VERSION is optional. If this is not defined it will default to the timestamp that you started the server. This will make clients restart whenever you restart the server. (probably good behaviour for dev mode)

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i client-reloader

Weekly Downloads

13

Version

1.2.2

License

MIT

Last publish

Collaborators

  • nopersonsmodules