Socket
Socket
Sign inDemoInstall

livereload-client

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

livereload-client

LiveReload client (talks to livereload-server)


Version published
Maintainers
1
Created
Source

LiveReload client

Handles the client side of the LiveReload protocol, connects to LiveReload 2 app and any other running instance of livereload-server.

Synopsis

PROTOCOLS =
  monitoring: [LRClient.protocols.MONITORING_7]
  connCheck:  [LRClient.protocols.CONN_CHECK_1]

client = new LRClient
  supportedProtocols: PROTOCOLS
  WebSocket: WebSocket || MozWebSocket

  id: "com.mycompany.myapp"   # unique reverse-dns style id of your app
  name: "MyApp"               # user-friendly name of your app
  version: "1.0"              # version number of your app

client.on 'connected', (negotiatedProtocols) ->
  console.log "Monitoring protocol version: %d", negotiatedProtocols.monitoring
  console.log "Connection check protocol version: %d", negotiatedProtocols.connCheck

  if negotiatedProtocols.connCheck >= 1
    client.send { command: 'ping', token: 'test' }

client.on 'command', (message) ->
  console.log "Received command %s with data %j", message.command, message

client.open()

Installation

npm install livereload-client

Running tests

npm test

License

© 2012, Andrey Tarantsov, distributed under the MIT license.

FAQs

Package last updated on 27 Oct 2012

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc