🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

custom-event-server

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

custom-event-server

Extends the DOM CustomEvent model through to the server

latest
Source
npmnpm
Version
0.0.0
Version published
Maintainers
1
Created
Source

#Overview I love the CustomEvent model in the DOM. A nice simple (name, detail) pairing. So, this is my take on using that same model on the server. In my mind it fits with end-to-end JavaScript to think about end-to-end events.

#Getting Started

##Install

npm install --save custom-event-server

###Simple Server

server = require('custom-event-server')()
server.on 'beep', (name, detail, client) ->
  client.fire 'boop', {}
server.on 'woot', (name, detail, client) ->
  console.log 'ahhh!'
server.listen 8080

###Simple Client This uses the core-custom-event-client which is a Polymer element.

<core-custom-event-client id="localhost" servers='ws://localhost:8080' onboop='this.server.fire("woot")'>
</core-custom-event-client>

And of course you can addEventListener, use a jQuery on, or bind a Polymer style on-boop='{{}}'

#Theory So the idea is that events coming from the server look and feel like events coming from other DOM elements. And, that instead of RPC/REST/Messages, you fire events on the server.

##Messages This is really just a web socket, but it adopts a (name, detail) protocol. About the only thing to keep in mind is to make sure your detail can be JSON serialized.

##Built Ins

hello

Fired from the server back to your client on a connection or reconnection.

ping

Fired from the client core-custom-event-client element on a timer. Pretty much any load balancer or proxy you put in front will time out and tear down your web socket without this.

pong

Fired from the server back to the client in response to a ping.

FAQs

Package last updated on 27 Jun 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts