npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@oril/ng-stomp-sock

v12.0.3

Published

Angular 12 (6+) wrapper for using STOMP.js over SockJS

Downloads

181

Readme

ng-stomp-sock

This package is an Angular 12 (6+) wrapper for using STOMP.js over SockJS.

ng-stomp-sock demo

Installation

  1. Use the node package manager npm to install ng-stomp-sock.
npm install @oril/ng-stomp-sock @stomp/stompjs sockjs-client 
  1. In your src/polyfills.ts file add (🛎️This is a workaround for STOMP.js global is not defined issue):
(window as any).global = window;

You are configured now.

Usage

Module

Import the NgStompSockModule in your AppModule.

import { NgStompSockModule } from '@oril/ng-stomp-sock'
//...
@NgModule({
  imports: [
    //...
    NgStompSockModule.config({
      url: 'SOCKET_API_URL'
    }),
    //...
  ],
  //...
})
//...

Component or Service

import { StompSockService, StompSockWebSocket, WsCommand } from '@oril/ng-stomp-sock';

export class AppComponent implements OnInit {

  public activityWS: StompSockWebSocket;

  private _endpoint = 'endpoint';
  private _requestEndpoint = 'request_endpoint';

  constructor(
    private _webSocketService: StompSockService
  ) { }

  ngOnInit() {
    this.connectToAPI();
  }

  public connectToAPI() {
    this._webSocketService.connected$
      .pipe(filter(connected => !!connected))
      .subscribe(() => this.connectToEndpoint());
  }

  public connectToEndpoint() {
    this.activityWS = this._webSocketService.getWebSocket(this._endpoint);
    this._subscribeActivity();
  }

  public send() {
    this.activityWS.send(this._requestEndpoint, { });
  }

  public disconnect() {
    this._webSocketService.unsubscribe(this._endpoint);
  }

  private _subscribeActivity() {
    this.activityWS.on<any>(WsCommand.MESSAGE)
      .subscribe(response => console.log(response));
  }
}

API

StompSockService

Factory service to manage StompSockWebSocket instances.

Methods

getWebSocket(destination: string, headers?: any): StompSockWebSocket

Subscribe to a STOMP Broker location.

Parameters

| Name | Type | Description | | ------------------ |--------| ----------------------| | destination | string | STOMP Broker location | | headers (optional) | any | Request header |


unsubscribe(destination: string)

Unsubscribe STOMP broker from a subscription.

Parameters

| Name | Type | Description | | ----------- |--------| --------------- | | destination | string | Endpoint string |


Properties

connected$: BehaviorSubject<boolean>

STOMP Client connection status. 🛎️Only if STOMP Client is connected STOMP Broker can subscribe.

StompSockWebSocket

Wrapper for STOMP Client over SockJS

Methods

on<T>(event: WsCommand): Observable<T>

Returns messages from STOMP Client filtered by event.

Parameters

| Name | Type | Description | | --------- |-----------| ------------------| | event | WsCommand | Filter event type |


send(destination: string, headers: any, body: any): void

Sends a message to a named destination.

Parameters

| Name | Type | Description | | --------------- |--------| ---------------------------------------------------| | destination | string | Endpoint string | | headers | Object | Request headers, will be stringified before send | | body | Object | Request body |


unsubscribe(): void

Unsubscribes instance.


Properties

stompClient: any

STOMP Client instance.


headers: any

STOMP Client headers.


get channel(): string

STOMP Client channel.

WebSocketConfig

Module config

interface

| Name | Type | Description | | ----------------- | ------- | -------------------------------------------------------------------------- | | url | string | Socket API URL | | reconnectInterval | number | Reconnect interval in ms (Default: 3000) | | ssr | boolean | Disables sockets connection while rendering on a server (Default: false) |

WsCommand

STOMP Client message types

enum

| Value | Description | | --------------- | ---------------------| | MESSAGE | Success response type | | ERROR | Error response type |

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT