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

socket.net-client

v1.0.27

Published

Node.js websocket enhanced service. Support node.js and browser platform, features: message encrypt(base on 4096 length rsa and symmetric), basic heartbeat, client authorization, directly message, channel message.

Downloads

114

Readme

Socket.Net

Start

More information see in docs.

Server

const http = require("http")
const { WebSocketServerApp } = require("./dist/index");

function boot() {
  console.log("server run")
  const s = http.createServer()

  const sn = new WebSocketServerApp(s)
  sn.listen("/socket")

  sn.setTokenVerifier((data) => {
    console.log(data.id, data.token, data.data)
    return true
  })
  sn.onSession((session) => {
    session.onAuthorized(() => {
      session.send("服务器无返回测试")
      session.send("服务器有返回测试", (payload) => {
        console.log(payload)
      }, () => {
        console.log("服务器有返回测试 2")
      })
    })
  })

  sn.onMessage((m, session) => {
    session.send(1234, (p) => {
      console.log(p)
    }, () => {
      console.log("done")
    })
  })
  sn.onChannelSessionJoined((id, session) => {
    console.log(id, session.id)
    sn.channels.assert(id).send("频道进入消息:服务端到客户端")
    // sn.channels.get(id).send("服务端发送频道信息")
    // sn.channels.get(id).send("1233123213")
    // session.channel(id).send(2345, (p) => {
    //   console.log(p)
    // }, () => {
    //   console.log("done")
    // })
  })
  sn.onChannelSessionExited((id, session) => {
    console.log(id, session.id)
    sn.channels.assert(id).send("频道退出消息:服务端到客户端")
  })
  sn.onMessage((message, session) => {
    console.log(message.data, message.replay)
    if (message.reply) {
      message.reply("客户端有返回测试 1")
    }
  })

  s.listen(8090, "0.0.0.0",)
}

boot()

Client

      const app = new WebSocketApp({
  authorization: {
    id: "1",
    token: "123",
    data: {}
  },
  heartbeat: {
    mode: "client",
    duration: 10 * 1000,
  }
})
app.onSession((session) => {
  session.onMessage((m) => {
    console.log(m.data, m.replay)
    if (m.reply) {
      m.reply("服务器有返回测试 1")
    }
  })

  session.sessions.onMessage((m) => {
    console.log(m.data)
    if (m.reply) {
      m.reply("客户端到客户端有返回测试 1")
    }
  })

  session.onAuthorized((data) => {
    session.send("客户端无返回测试")
    session.send("客户端有返回测试", (payload) => {
      console.log(payload)
    }, () => {
      console.log("客户端有返回测试 2")
    })

    session.sessions.to("1").send("客户端到客户端无返回测试")
    session.sessions.to("1").send("客户端到客户端有返回测试", (payload) => {
      console.log(payload)
    }, () => {
      console.log("客户端到客户端有返回测试 2")
    })

    const chan = session.channel("1")
    chan.onMessage((m) => {
      console.log(m.data)
    })
    chan.send("频道测试")
    chan.join().then(() => {
      chan.send("频道测试")
      setTimeout(() => {
        chan.exit()
      },  1000)
    })
  })
})

app.conn("ws://127.0.0.1:8090/socket");

Desgin

Model Flow

    read
     | transport     ↑
     | encrypt       | Use to encrypt and decrypt message. This layer is optional.
     | heartbeat     | Use to manager the connection.
     | authorization | Use to manager the client.
     | other         | business process.
     ↓               |
                    write

On Message

interface message {
  type: "client" | "channel"

  from: "string"

  to: "string"

  data: any

  /**
   * message from server and client: reply will be a function or undefined
   * message from channel: reply to channel
   */
  reply?: (message: any) => void
}

The arguments of on("message") will replace to interface message

TransportIO Destory

Every Modules implement TransportIO destoryed on transport closed. Module need to implment the destory function to close the emitter, timer and anyother action need to be closed.


class Example {
     
     destroy() { // destroy() is not a required function, so TransportIO interface not declare.
          // close everything at here
     }

}

const e = new Example(transport, options)

transport.on("close", {
     e.destory()
})

Encrypt Layer

Message encrypt layer. Running model same like https.

Flow:

  1. Client request the public key, and intercept the message writed by other layer until message encrypt module ready, put the message to the message queue.
  2. Server read the client request and process, return the public key.
  3. Client read the server's response, generate a symmetric key and store it, use the public key to encrypt the key, write to server after above work done.
  4. Server read the client message, store the symmetric key, set the isEncrypt variable to true, then return ready status to client.
  5. Client read the server response, set the isEncrypt variable to ture, trigger the encryped event, then send the messages encrypted in message queue.

Client must be sure is encrypted, otherwise put the message to the message queue

Distributed (Plan)

Distributed processing, let the service run like a tree.

This is just a mind, may be i need to rewrite the business logic, must be set a special node flag to route the message, due to it's no need at present, not implement currently.

Here are the flows:

  • Send Message From Child Server
    1. Child server run a websocket client, and register the client as a router.
    2. Find target from router if child server could not route the message.
    3. Parent server process the message as normal flow.
  • Send Message From Parent Server
    1. Child server connect parent server correctly, and register as a router in parent server.
    2. Find target from multi routers (every router need to maintain a router table, or a table could access a client by this router.) if parent server could not route the message.
    3. Router if could work transfer the message
    4. Child server process the message as normal flow.

router need to maintain a table. If router in child server, the table include the parent server which could be arrived. If router in parent server, the logic same with the router in child server but the table only include the child.