Skip to content

sjmf/ng2-stompjs-demo

Repository files navigation

STOMP.js Angular 2 Demo App

A demo application using Angular 2 in Typescript and STOMP.js, generated with angular-cli.

This demo app implements a more ng2-faithful way of connecting to a message queue and subscribing to messages from a STOMP topic. Uses the Typescript interface definition for Jeff Mesnil's excellent STOMP.js JavaScript library, a STOMPService which subscribes to messages, and an example 'raw data' component which uses the Observable type to data-bind messages to the DOM.

For a demo using MQTT instead of STOMP, see https://github.com/sjmf/ng2-mqtt-demo

To get more help on the angular-cli use ng --help or go check out the Angular-CLI README.

Quick Start

As well as the following, you will also need the angular-cli and a message broker supporting STOMP, the Simple Text Oriented Messaging Protocol. This example was built using RabbitMQ WebSTOMP but other brokers will also work. (Shameless self-plug: if you want SSL with your RabbitMQ socks, you might want to read my blog post.)

To get started running this app locally (assuming you've already got angular-cli):

# Clone the repo
git clone https://github.com/sjmf/ng2-stompjs-demo
# cd into it
cd ng2-stompjs-demo
# Install the packages from package.json
npm install

You will also need to edit the app/api/config.json configuration file to set the correct connection parameters for your message broker. When you've done this, you can run the application locally:

# Run the application locally
ng serve

Then http://localhost:4200 should open in your browser. The app will automatically reload if you change any of the source files.

You can override the default port by changing it in the .ember-cli file.

Build

Run ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the -prod flag for a production build.

Layout

The source is located under the app folder:

├── src                                          * Source folder
│   ├── api                                      * Example API folder (static for demo)
│   │   └── config.json                          * Configuration file for STOMP
│   │
│   ├── app                                      * Application folder
│   │   ├── components                           * Components folder
│   │   │   ├── rawdata                          * Example data streaming component folder
│   │   │   └── status                           * STOMP Status component folder
│   │   │
│   │   ├── services                             * Services folder
│   │   │   ├── config                           * Config service folder (retrieves the configuration)
│   │   │   └── stomp                            * STOMP service folder (ng2 definition for a STOMP configuration)
│   │   │
│   │   ├── app.component.css                    * Component css file
│   │   ├── app.component.html                   * Component html file
│   │   ├── app.component.spec.ts                * Component testings
│   │   ├── app.component.ts                     * Top-level app-root component
│   │   ├── app.module.ts                        * App module definition
│   │   └── index.ts                             * Indexing file
│   │
│   ├── assets                                   * Assets folder
│   │   └── .gitkeep                             * Placeholder to include the folder to source control
│   │
│   ├── environments                             * Environment settings folder
│   │   ├── environment.prod.ts                  * Production environment settings
│   │   └── environment.ts                       * Development environment settings
│   │
│   ├── index.html                               * The root page served to browser
│   ├── main.ts                                  * App bootstrap
│   ├── polyfills.ts                             * Polyfills file
│   ├── styles.css                               * Main css file
│   ├── tsconfig.app.json                        * App Typescript transpiler options 
│   └── typings.d.ts                             * Typescript typings definition file
│
├── .angular-cli.json                            * Angular CLI configuration file
├── package.json                                 * Package info and list of dependencies to install
├── tsconfig.json                                * Main Typescript transpiler options 
└── tslint.json                                  * Typescript Linter configuration file

Excluded from this partial tree for brevity: sub-component .ts .html etc files under folders, testing framework files, and the e2e End to End testing folder containing app behaviour testings and definitions. The node_modules directory will also be generated for the installed node packages.)

Extending

The example data streaming component provides a demonstration of how to use the STOMPService to subscribe to a data stream. At its' core, the STOMPService makes available an Observable which the RawDataComponent uses in its own template, and additionally subscribes its' own on_next method to.

A barebones set-up of the service could run from a component's ngOnInit method, and might look something like this:

this._stompService.configure( config, () => console.log("connected") );
this._stompService.try_connect();

Our RawDataComponent then copies a reference to the public member messages, which can be used with a template variable and the |async pipe to update the template in real time.

The instantiating component must provide an instance of STOMPService. This implementation also uses a ConfigService to retrieve the STOMP connection variables from a json file, with the intention that other clients might like to route this request to an API along with some form of user token.

The STOMP connection status is also fed-back to the application user via a BehaviorSubject observable, implemented following the model used in this Angular2 stocks app. If the connection fails, the application will retry every 5 seconds until it reopens.

Contributing

Very happy to accept suggestions for improvement (or even pull requests!). This project represents my first run-in with Typescript and Angular 2, so while I feel like I've learned a lot it's possible that I've messed up somewhere. Raise an issue and let me know!

Licence

MIT Licence. Essentially: do what you like with it, but give credit if credit's due, and it's not my fault if this code eats your product/machine/whatever.