GithubHelp home page GithubHelp logo

isabella232 / jsmq Goto Github PK

View Code? Open in Web Editor NEW

This project forked from zeromq/jsmq

0.0 0.0 0.0 24 KB

Javascript client for ZeroMQ/NetMQ

License: Mozilla Public License 2.0

JavaScript 86.67% HTML 13.33%

jsmq's Introduction

JSMQ

JSMQ is javascript client for ZeroMQ/NetMQ over WebSockets.

ZeroMQ and NetMQ don't have a WebSockets transport at the moment, however extensions already exist for NetMQ and CZMQ.

For browsers without WebSockets support (RFC6455) you can try to use web-socket-js.

Both JSMQ and NetMQ WebSockets are beta at the moment and the API and protocol will probably changed.

The JSMQ currently implement the dealer and subscriber patterns and the NetMQ WebSockets implement the router and publisher patterns.

You can download the JSMQ.JS file from this page or from nuget, just search for JSMQ and include prerelease.

Using JSMQ is very similar to using other high level binding of ZeroMQ. Following is small example:

<html>
    <script src="JSMQ.js"></script>
    <script>
        var dealer = new JSMQ.Dealer();
        dealer.connect("ws://localhost");

        // we must wait for the dealer to be connected before we can send messages, any messages we are trying to send
        // while the dealer is not connected will be dropped
        dealer.sendReady = function() {
            document.getElementById("sendButton").disabled = "";
        };

        var subscriber = new JSMQ.Subscriber();
        subscriber.connect("ws://localhost:81");
        subscriber.subscribe("chat");

        subscriber.onMessage = function (message) {
            
            // we ignore the first frame because it's topic
            message.popString();

            document.getElementById("chatTextArea").value =
                document.getElementById("chatTextArea").value +
                message.popString()  + "\n";
        };

        dealer.onMessage = function (message) {
            // the response from the server
            alert(message.popString());
        };

        function send() {
            var message = new JSMQ.Message();
            message.addString(document.getElementById("messageTextBox").value);
            
            dealer.send(message);
        }
    </script>
    <body>                        
        <textarea id="chatTextArea" readonly="readonly"></textarea>
        <br/>
        <label>Message:</label><input id="messageTextBox" value="" />
        <button id="sendButton" disabled="disabled" onclick="javascript:send();">
            Send
        </button>                    
    </body>
</html>

jsmq's People

Contributors

krisrok avatar leverate-somech avatar mhaberler avatar somdoron 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.