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

@observable-rpc/router

v0.1.5

Published

Creates a router that accepts WebSocket requests for methods to be run on the server.

Downloads

23

Readme

@observable-rpc/router

Creates a router that accepts WebSocket requests for methods to be run on the server.

Use the @observable-rpc/client package to call to the router from the browser.

API

ObservableRpcRouter(options)

import { ObservableRpcRouter } from '@observable-rpc/router'
const router = new ObservableRpcRouter(options)

Wraps a Socket.IO WebSocket server and maps requests from clients to methods.

options

  • options.server: HttpServer

    A server from the http or https module

  • options.path: String

    Default: /rpc. The path on your server where the ObservableRpcClient will mount itself and handle requests.

  • options.consumeLog$: (log$) => void

    By default log messages from ObservableRpcRouter are handled with debug. Pass a consumeLog$ function to receive a stream of log events to handle them yourself. Log events have the following properties:

    • level: 'error'|'info'|'debug': The level for the log message

    • msg: String: The log message, probably pretty short

    • data: any: Metadata relevant to the specific log message

  • options.methods: Array<MethodSpec>

    An array of methods to expose for RPC. Each MethodSpec should be an object that has the following properties:

    • name: String: The name that clients will use to call this method

    • validate: (Joi) => JoiSchema: optional -- A function to generate a Joi schema that will be used to validate params sent from callers. In addition to the standard validation types available on the Joi API, the Joi.observable() function can be used to define a parameter from Clients that should be an observable. Joi.observable().items(...a Joi schema...) can be used to validate the items that the observable emits, sending errors to the Client when they emit invalid items. See the reverse example for example usage.

    • handler: (params, context) => Observable: A function that takes validated params from callers and creates Observables that will be sent back to the caller.

  • options.createContext$: (socket) => ObservableInput<Object>

    An optional function that is called when a new socket connects. It must return an Observable, a Promise, or an Iterable which will be converted into an Observable; the context$.

    The context$ provides two major features:

    1. authentication: To authenticate connections, which you should probably be doing, return a Promise or an Observable from createContext$ and do whatever async logic necessary to validate the socket.request.headers, or wait for additional messages using socket.on(). All method calls by the RPC client will be blocked until context$ produces a value. If at any time context$ emits an error or rejects, the error will be sent as the final message to the RPC connection and the connection will be destroyed.

    2. socket specific arguments to methods: The most recent value produced by the context$ will be passed as the second argument to all methods called by this RPC client. This is how you can expose API clients, configuration, or functionality that is user specific to your router methods.

methods

  • ObservableRpcRouter#close(): Promise

    Close the router and all active connections/subscriptions.