npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ctrl-socket

v0.0.1

Published

CtrlSocket.js is WebSocket client util and easy to use.

Downloads

1

Readme

CtrlSocket.js

Usage

  • Create

    const url = 'wss://xxxxxxxxx' //websocket url
    const ws = new CtrlSocket(url)
  • Methods

  1. subscribe

    ws.subscribe({
        onopen: function ,
        onmessage: function,
        onerror: function,
        onclose: function
    })

    Call back function , will call onmessage

    ws.subscribe( (e)=>console.log(e.data) )
    // same
    ws.subscribe({
      onmessage: (e)=>console.log(e.data)
    })

    Return CtrlSocket Object

  2. retry

    When websocket state is closed and closed code != 1000 will reconnect

    ws.retry(count: Number,interval: Number)

    retry(3, 1000) //reconnect to server 3 times per second
    retry(3) //reconnect to server 3 times (interval default value is 5 seconds)
    retry() //reconnect to server until server response

    Return CtrlSocket Object

  3. connect

    connect to server , readyState changes to OPEN

    ws.connect()
  4. disconnect

    disconnect , readyState changes to CLOSED

    ws.disconnect()
  5. reconnect

    reconnect to server

    ws.reconnect(code = 1000, reason = 'Normal closure')
  6. send

    send a message to server

    ws.send('Hi there!') // String
    
    ws.send({
      message: 'Hi there!' //Object
    })
  7. readyState get websocket state

    const state = ws.readyState

    in Vue you can ...

    ...
    computed:{
      getState(){
        let msg =''
        if(this.state===1){
          msg = 'Open'
        }
        ...
        return msg
      }
    },
    watch:{
      state(newValue,oldValue){
        //todo
      }
    },
    created(){
      ...
      this.ws = new CtrlSocket(url)
      this.state = this.ws.readyState
    }
    ...
  8. heartBeat Check websocket still connect to server, if loss connection will call onclose.

    ws.heartBeat(interval: Number, message) interval--> default 30 seconds

      // use with retry()
      ws.retry()
      .heartBeat(3000,{
         comment: 'heartBeat' //if loss connection , reconnect until server response
     })
      ws.heartBeat() //if loss connection do nothing , readyState = CLOSED

    Return CtrlSocket Object

Example

const connectURL = 'wss://echo.websocket.org'

function onmessage (response) {
    if (typeof response.data === 'string') {
        // todo
    }
}

const ws = new CtrlSocket(connectURL)
.heartBeat(60000,'ping')
.retry(3)
.subscribe({
    onopen: () => console.log('OPEN') ,
    onclose: () => console.log('CLOSED'),
    onerror: () => console.log('Error')
    onmessage
})