Git Product home page Git Product logo

jwhisper-esm's Introduction

jWhisper

Welcome to jWhiper's readme page. What's jWhisper? It is an JSON-WSP compatible library. In other words, this is an RPC (Remote Procedure Call) library that allows you to interact with remote code just as it if was local (almost).

Where the heck does the name come from? I know, it's a strange one, I was trying to come up with a cool name (I really tried), but all I got was this silly word (which comes from jSON-Whisper #seeWhatIDidthere?).

How to use it?

This library allows you to both, setup a server and share content through JSW-WSP with it, or write a client that interacts with that content.

Writing a server

Server wise, you need to setup your schema which will be transfered back to the clients once they're instantiated, or it'll receive the requests (through an HTTP POST connection) and execute the intended method.

Here is a code sample:

const Server = require("./lib/server")

class Test {
    constructor() {

    }

    add(a,b) {
        console.log("Adding numbers: ", a, b)
        return a + b
    }

    mult(a,b) {
        return a * b
    }
}

let services = {
        "Test": {
            "service_class": Test,
            "methods": {
                "add": {
                    "doc_lines": ["Adds 2 numbers"],
                    "params": {
                        "first_number": {
                            "def_order": 1,
                            "doc_lines": ["first number to add"],
                            "type": "number",
                            "optional": false
                        },
                        "second_number": {
                            "def_order": 2,
                            "doc_lines": ["second number to add"],
                            "type": "number",
                            "optional": false
                        }
                    },
                    "ret_info": {
                        "doc_lines": ["the result of the addition "],
                        "type": ["number"]
                    }
                }
            }
        }
}

let types = {
            "User": {
                "name": "string",
                "age": "number"
            }
        }

const myServer = new Server({
    specs: {
        "servicename": "Test Service",
        "url": ""
    },
    services: services,
    types: types

})

myServer.start(8080, 'http://localhost')

This server shared only the add method, no the mult one from the Test class.

Writing a client

The client is super easy to create, simply instantiate it and configure it to point to the right address.

Here is a simple code sample>

const Client = require("./lib/client")


let myClient = new Client({
    host: "http://localhost",
    port: 8080
})

myClient.on('ready', _ => {
    console.log("Connection established, schema received");

    (async () => {
        console.log("Remotely adding numbers...")
        let result = null
        try{
            result = await myClient.add(2,3)
        } catch(e) {
            console.log("Error trying to call remote method: ", e)
        }
        console.log("Result: ", result)
    })()


});

That's a lot of code, but notice how we're using the add method just as if it was local (with the added / required async part).

License

I wrote this in a night as part of an experiment for an article I was writing, so feel free to use it as you see fit. If you happen to find bugs and would love to send fixes over, open a PR, I'll love to take a look!

jwhisper-esm's People

Contributors

deleteman avatar hereigadastoribio-ionos avatar datatypevoid avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.