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

rpcjs

v1.1.0

Published

Promise-based RPC. Works in browser, node, electron, you name it. Any transport you like.

Downloads

16

Readme

RPCjs

Build Status

The easiest RPC you've seen, entirely promise based, that plays well with:

  • all environments: Node, Browser, Electron etc
  • all transports: TPC, sockets, whatever you fancy?
  • all Promise-A implemenations: Bluebird, Q, ES6, jQuery etc
  • all node versions: 0.10 +, es6 or not

RPC nodes are the core of the API. The transport is defined by you, so you can do whatever you like. There are built-in transports.

A design goal is to let client code be as uncluttered by RPC stuff as possible (e.g calling a method without worrying about having to connect first), while giving control to handle timeouts etc that're vital with RPC.

All methods return a promise. they will timeout if the remote end never turns up. Documentation below uses TypeScript as it's a nicely defined way of talking about types!

rpcjs.rpc(option: RpcOptions) => RpcPair

interface RpcOptions {
  name: string
  Promise: PromiseConstructor
  timeout: number
  emitTimeout: number
  error: (err) => void
  wrapEffects: () => void
}

interface RpcTransport {
  send: () => void
}

returns a new RpcPair

methods of RpcPair instance

expose(name: string, (...args: Array<any>) => Promise<any> | any) => void

expose({[name: string]: (...args: Array<any>) => Promise<any> | any)}) => void

expose either a single or an object of methods to remote side. methods can be sync or async; always async for remote side

node.expose("answer", function(number) {
  return number + 42;
});

call(options: { timeout: number}, method, ...args: Array<any>) => Promise<any>

call(method : string, ...args: Array<any>) => Promise<any>

Takes call options as optional first argument (useful for .bind/_.partial to create an API with default timeouts etc):

e.g

node.call("increment", 1).then(assertEqual(2));
node.call({ timeout: 5000 }, "increment", 1).then(assertEqual(2));

on(), once(), removeListener() (aliased to .off)

listen to events emitted by remote side. arguments as per EventEmitter

emit(event : string, data : any) => Promise<any>

emit event heard by remote. returns promise resolved if remote side turned up to heard about it

Actor API on RpcPairs

RPCjs also supports the ideas of Actors. You'll frequently be wanting to talk about a given context - actors give you a way to to this without continually resending the same context ID.

getActor(id: string) => RemoteActor

Returns an object used to interact with a remote actor.

exposeActor(id: string, a: LocalActor) => void

Exposes an actor which the remote side can interact with

callActor(id: string, method: string, ...params: Array<any>) => Promise<any>

call a method on an actor by id.

expireActor(id: string) => void

Expire a previously exposed actor.

Having a separate emitter differentiates from remote events.

interface LocalActor { on: (e: string, fn: (...args: any)) => void, expire: () => void )

Interface used by actor system. All optional. Methods called by remote side can be synchronous or return a promise.

RemoteActor API

.call() - as rpc.call()

.on(), .off() etc - as rpc.on() ...

.get(name: string) => any

Returns value of property on actor at point at which message is received. Serialized/deserialized as JSON.

Transports

Transports are very simple. They call a RpcPair's .incoming method with incoming messages, and use .setSend to inform a pair that it can send messages via this transport.

That's it! Take a look at transports/streamTransport.js to see a transport that lets RPCjs work with TCP/UDP/HTTPS or whatever streams you like, however crazy the chain of compression, encryption etc in that stream is!

Debug

To see debug messages, set the DEBUG env var:

DEBUG=rpcjs node yourApp.js