0.1.0 • Published 6 years ago

rexjs-javascript v0.1.0

Weekly downloads
1
License
Apache-2.0
Repository
-
Last release
6 years ago

RexJS - javascript

RexJS is library for reactivity between elixir data with front-end through javascript websockets.

Modules

Installation

Javascript library require elixir core library RexJS

Add rexjs to your list of dependencies:

Command line

# with yarn
yarn add rexjs --dev
# with npm
npm install rexjs --dev

File package.json

"rexjs": "^0.0.1"

Usage

Create RexJS instance

let rexjs = new RexJS({
    websocketUrl: 'ws://localhost/rexjs'
})

Bind module with worker to RexJS instance

rexjs.bindModule("worker_name", 'module_name', function(data) {
    // Work with data
})