A simple stocklist demo application showing integration between the Ember.js framework and the Lightstreamer JavaScript Client library.
This demo displays real-time market data for ten stocks, generated by a feed simulator in a similar way to the Lightstreamer - Basic Stock-List Demo - HTML Client.
This page uses the JavaScript Client API for Lightstreamer to handle the communications with Lightstreamer Server and uses Ember.js to display the real-time data pushed by Lightstreamer Server.
A Lightstreamer Subscription is used for subscribing to the data. The onItemUpdate callback manages the update of the model that backs the application template: once a new item event comes from the server, a lookup from the local store is performed to retrieve the matching object, in order to update its attribute values according to the modified item field values. Finally, changes applied to the model will be automatically reflected by the framework in the HTML page.
The demo includes the following client-side functionalities:
- A Subscription containing 10 items, subscribed to in MERGE mode.
In the blog post "A Simple Ember.js Demo for Lightstreamer" you can find a more in depth discussion about the integration between Ember.js and Lightstreamer.
If you want to install a version of this demo pointing to your local Lightstreamer Server, follow these steps:
- Note that, as prerequisite, the Lightstreamer - Stock- List Demo - Java Adapter has to be deployed on your local Lightstreamer Server instance. Please check out that project and follow the installation instructions provided with it.
- Launch Lightstreamer Server.
- Change the current directory to the location of the file
package.json
and issue the commandsnpm install
(to install Ember libraries) andnpm run build
. Be sure to have installed Node.js and npm. - Deploy this demo on the Lightstreamer Server (used as Web server) or in any external Web Server. If you chose the former case, please create the folders
<LS_HOME>/pages/demos/EmberDemo
then copy there the contents of the/build
folder of this project. The client demo configuration assumes that Lightstreamer Server, Lightstreamer Adapters and this client are launched on the same machine. If you need to target a different Lightstreamer server, please search this line:
var lsClient = new LightstreamerClient(protocolToUse + "//localhost:8080", "DEMO");
in lsClient.js
and change it accordingly.
The demo is now ready to be launched.
- Lightstreamer - Stock-List Demo - Java Adapter
- Lightstreamer - Reusable Metadata Adapters - Java Adapter
- Compatible with Lightstreamer Web Client library version 9.0 or newer.
- For Lightstreamer Server 7.3.2 or newer. Ensure that Web Client API is supported by Lightstreamer Server license configuration.
- For a version of this example compatible with Lightstreamer SDK for Web Clients version 8.x or earlier, please refer to this tag.