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

@alsadi/json_rpc_server

v0.1.2

Published

simple json rpc server and tools

Downloads

7

Readme

JsonRpcServer

A simple JSON-RPC implementation for Node.js that works via HTTP or WebSockets. You can get it via npm install.

NPM

npm install --save '@alsadi/json_rpc_server'
import {JsonRpcHttpServer} from "@alsadi/json_rpc_server";

async function books_list({page, per_page}) {
    // simulate database lookup
    per_page = per_page || 10;
    const items = [];
    for (let i=0, j=(page-1)*per_page; i<per_page; ++i, ++j) {
        items.push({id: j, title: `book #${j} title goes here`});
    }
    return {items};
} 

(async function() {
    const server = new JsonRpcHttpServer("rpc", ["assets", "index.html", "favicon.ico"], "./public");
    server.add_method("books.list", books_list);
    server.listen(8080);
})();

You can use strict standard request like this

curl -X POST -d '{"jsonrpc": "2.0", "method": "books.list", "params":{"page":1, "per_page":10}, "id":"xyz"}' 'http://localhost:8080/rpc' | jq

or simply, our extension

curl -X POST -d '{"params":{"page":1, "per_page": 10}}' 'http://localhost:8080/rpc/books.list' | jq

Included Demo

Type npm run demo which starts a server on port 8080 both HTTP and WebSocket.

Validation

adjust the code above to pass validate method that throws exceptions or return false in case of invalid params, like this:

function books_list_validate(params) {
    const {page, per_page} = params;
    if (!Number.isInteger(page)) {
        throw new Error("page should be integer");
    }
    if (!Number.isInteger(per_page)) {
        const e = new Error("page should be integer");
        e.code = 'invalid-per-page-value';
        e.field = "per_page";
        throw e;
    }
    return true;
}
server.add_method("books.list", books_list, books_list_validate);

For validation you can:

  • Throw a coded exception (an exception with code property)
    • you can use short cut like FieldValidationError(field, msg) or ValidationError(validations, msg)
  • return false with reasons of key being the param with a list of problems like this
throw new FieldValidationError("field1", "reason 1");
throw new ValidationError({
    "field1":["reason 1", "reason 2"],
    "field2":["reason 3"],
});
return [false, {
    "page": ["required field is missing"],
    "per_page": ["should be in range 1-100"],
}];

Automatic Validations

You don't need to write validation yourself as you can generate validators from your code (TS type-hints or JS-Doc):

for even use TS compiler API using

tsc lib/**/*.js --declaration --allowJs --emitDeclarationOnly --outFile index.d.ts
const ts = require("typescript");
let r=ts.createSourceFile("index.d.ts", fs.readFileSync("index.d.ts", "utf-8"), ts.ScriptTarget.Latest)
let filename = "web/books"
let func = "action_list"
console.log(JSON.stringify(r.statements.filter(i=>i.name.text==filename)[0].body.statements.filter(i=>i.name.text==func)[0].parameters[0].type.members, null, 2))
  • use ajv to validate input params.

The best part about the above approach that the expensive part is done at build-time not runtime.

async function() {
    // ...
    const method_name = "books.list";
    const schema_name = `rpc.${name}`;
    const fn = `${schema_name}.json`;
    const schema_str = (await fs.promises.readFile(`./schemas/${fn}`)).toString();
    const schema = JSON.parse(schema_str);
    ajv.addSchema(schema, name);
    // ...
    const validate = proj.ajv.getSchema(schema_name);
    server.add_method(method_name, callback, validate);
}

Interface Description Language (IDL)

You can use JSON-Schema above as Interface Description Language (IDL) and generate OpenAPI/Swagger Automatically. Just generate url: ./public/build/swagger.json that contains all the JSON schemas like this

{
  "openapi": "3.0.1",
  "paths": {
    "/books.list": {
      "requestBody": {
        "content": {
          "application/json": {
            "schema": {"$ref": "#/components/schemas/books.list"}
          }
        }
      },
      "responses": {
        "200": {
          "description": "JSON object",
          "content": {
            "application/json": {
              "schema": {"$ref": "#/components/schemas/generic"}
            }
          }
        }
      }
    }
  }
},
"components": {
  "schemas": {
      // ... GOES HERE
  }
}
}

and use the generated file list this

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>JSON-RPC UI</title>
  <link rel="stylesheet" type="text/css" href="http://unpkg.com/[email protected]/swagger-ui.css" >
</head>
<body>
<div id="swagger-ui"></div>
<script src="http://unpkg.com/swagger-ui-dist@3/swagger-ui-bundle.js"></script>
<script>
var ui = SwaggerUIBundle({
    url: "/build/swagger.json",
    dom_id: '#swagger-ui'
})
</script>
</body>
</html>

Extensions to JSON-RPC

  • "jsonrpc": "2.0" is optional, it's is just ignored
  • "method" in HTTP is optional, if missing it will be read from HTTP URL like this /rpc/<METHOD>. This helps using Swagger/OpenAPI/Postman. In WS method is manadatory.
  • When called the function recieves a second optional parameter called ctx (for context) containing the object returned by auth method, for example auth might read session cookie or basic auth head and based on that returns {"user":{id, name, avatar, ...}}.
  • "error" object has the following properies beside "code" and "message"
    • level: string optional defaults to error but can be set warning in case of non-code problem like validation errors.
    • trace: string which is the stack trace in non-production environment.
    • validations: Object<string, Array<string>> in case of validation errors it contains a mapping of field names (properties) and their corresponding array of problems.