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

@small-tech/remote

v2.2.0

Published

Remote is a tiny (< 100 lines of code), expressive, and elegant isomorphic JavaScript WebSocket interface.

Downloads

7

Readme

@small-tech/remote

Remote is a tiny (< 100 lines of code), expressive, and elegant isomorphic JavaScript WebSocket interface.

Installation

npm install @small-tech/remote

Usage

Initialisation

import Remote from '@small-tech/remote'

// Works in the browser and Node.js (use, e.g., ws module on the latter)
const socket = new WebSocket('wss://my.socket/')
const remote = new Remote(socket)

Regular messaging

// Handle messages of type my.fancy.response
remote.my.fancy.response.handler = message => {
  console.log('I got a fancy response', message)
}

// Handle messages of type my.fancy.progress
remote.my.fancy.progress.handler = message => {
  console.log('Progress: ', message.progress)
}

// Send a message of type my.fancy.request
remote.my.fancy.request.send({
  please: true
})

Request/response via await

First node:

// Request
const response = remote.my.fancy.request.await({ optional: data })

Second node:

// Response
remote.my.fancy.request.handler = message => {
  remote.my.fancy.request.respond(message, { optional: data })
}

When using await, there is a default 10-second timeout. You can customise this per request by passing the duration in miliseconds as the second parameter. e.g.,

// Request with custom 1-second timeout
let response
try {
  response = remote.my.fany.request.await({}, 1000)
} catch (error) {
  // Handle the timeout error here.
}

Handling and sending the same message type

// Handle messages of type 'chat'.
remote.chat.handler = message => {
  console.log('Received message:', message.from, message.body)
}

// Send a message of type 'chat'.
remote.chat.send({
  from: 'Aral',
  body: 'Hello!'
})

How it works

Messages are sent as JSON strings and received messages are parsed from JSON strings.

The syntax of Remote is as follows:

remote.some.custom.message.type.action

Calls start with a reference to the Remote instance and ends with an action. Anything in between the two comprises the message type.

So remote.my.fancy.message.type.send() sends a message of type my.fancy.message.type.

Valid actions are:

  • send: (function) sends a message.
  • respond: (function) like send but takes a reference to the original message and replies using its ID. Used in conjuction with await on the other node.
  • await: (function) returns a promise that resolves once the other node as responded to the message.
  • handler: (property) used to define a message handler.

Note that Remote automatically creates the object hierarchy defined by the message type (thanks to the magic of proxies).

Important note: don’t pass references to Remote instances to child components

On the client, you might feel the need to pass references to Remote instance to child components in your interface.

Don’t.

Remember that each Remote instance keeps its own list of event handlers. If you pass a reference to a Remote instance to a child component (e.g., using a SvelteKit property) and define an event handler there that was already defined on the parent (or a sibling) component, you will end up overwriting it.

Instead, pass references to the original socket and create a new Remote instance in each component that you want to make use of the Remote interface.

Test

npm run test

Note: the tests use EventTarget and require Node 16. The module itself should work on Node LTS (14.x as of this writing) and browsers.

Coverage

npm run coverage

Like this? Fund us!

Small Technology Foundation is a tiny, independent not-for-profit.

We exist in part thanks to patronage by people like you. If you share our vision and want to support our work, please become a patron or donate to us today and help us continue to exist.

Copyright

© 2021-present Aral Balkan, Small Technology Foundation.

License

ISC