1.1.9 • Published 3 years ago

@youngmonkeys/ezyfox-es6-client v1.1.9

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

ezyfox-server-es6-client

javascript emacs 6 client for ezyfox server

Synopsis

javascript emacs 6 client for ezyfox server

Documentation

https://youngmonkeys.org/ezyfox-es6-client-sdk/

Code Example

You can find the full example here

1. Create ws client

var config = new Ezy.ClientConfig;
config.zoneName = "zoneName";
var clients = Ezy.Clients.getInstance();
var client = clients.newDefaultClient(config);

2. Setup ws client*

var setup = client.setup;
setup.addEventHandler(Ezy.EventType.DISCONNECTION, disconnectionHandler);
setup.addDataHandler(Ezy.Command.HANDSHAKE, handshakeHandler);
setup.addDataHandler(Ezy.Command.LOGIN, userLoginHandler);
setup.addDataHandler(Ezy.Command.APP_ACCESS, accessAppHandler);
var setupApp = setup.setupApp("appName");
setupApp.addDataHandler("command", function(app, data) {
    controller.contactController.handleSuggestedContactsResponse(data);
});

3. Connect to server

client.connect("ws://localhost:2208/ws");

Installation

npm i ezyfox-es6-client