stomp-websocket

WebJar for stomp-websocket

Лицензия

Лицензия

Категории

Категории

Github Инструменты разработки Контроль версий
Группа

Группа

org.webjars.bower
Идентификатор

Идентификатор

github-com-jmesnil-stomp-websocket
Последняя версия

Последняя версия

2.3.4
Дата

Дата

Тип

Тип

jar
Описание

Описание

stomp-websocket
WebJar for stomp-websocket
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/jmesnil/stomp-websocket

Скачать github-com-jmesnil-stomp-websocket

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.bower/github-com-jmesnil-stomp-websocket/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>github-com-jmesnil-stomp-websocket</artifactId>
    <version>2.3.4</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/github-com-jmesnil-stomp-websocket/
implementation 'org.webjars.bower:github-com-jmesnil-stomp-websocket:2.3.4'
// https://jarcasting.com/artifacts/org.webjars.bower/github-com-jmesnil-stomp-websocket/
implementation ("org.webjars.bower:github-com-jmesnil-stomp-websocket:2.3.4")
'org.webjars.bower:github-com-jmesnil-stomp-websocket:jar:2.3.4'
<dependency org="org.webjars.bower" name="github-com-jmesnil-stomp-websocket" rev="2.3.4">
  <artifact name="github-com-jmesnil-stomp-websocket" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='github-com-jmesnil-stomp-websocket', version='2.3.4')
)
libraryDependencies += "org.webjars.bower" % "github-com-jmesnil-stomp-websocket" % "2.3.4"
[org.webjars.bower/github-com-jmesnil-stomp-websocket "2.3.4"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

STOMP.js

This library provides a STOMP client for Web browser (using Web Sockets) or node.js applications (either using raw TCP sockets or Web Sockets).

Project Status

This project is no longer maintained (some context about this decision).

If you encounter bugs with it or need enhancements, you can fork it and modify it as the project is under the Apache License 2.0.

Web Browser support

The library file is located in lib/stomp.js (a minified version is available in lib/stomp.min.js). It does not require any dependency (except WebSocket support from the browser or an alternative to WebSocket!)

Online documentation describes the library API (including the annotated source code).

node.js support

Install the 'stompjs' module

$ npm install stompjs

In the node.js app, require the module with:

var Stomp = require('stompjs');

To connect to a STOMP broker over a TCP socket, use the Stomp.overTCP(host, port) method:

var client = Stomp.overTCP('localhost', 61613);

To connect to a STOMP broker over a WebSocket, use instead the Stomp.overWS(url) method:

var client = Stomp.overWS('ws://localhost:61614');

Development Requirements

For development (testing, building) the project requires node.js. This allows us to run tests without the browser continuously during development (see cake watch).

$ npm install

Building and Testing

Build Status

To build JavaScript from the CoffeeScript source code:

$ cake build

To run tests:

$ cake test

To continuously run tests on file changes:

$ cake watch

Browser Tests

  • Make sure you have a running STOMP broker which supports the WebSocket protocol (see the documentation)
  • Open in your web browser the project's test page
  • Check all tests pass

Use

The project contains examples for using stomp.js to send and receive STOMP messages from a server directly in the Web Browser or in a WebWorker.

Authors

Версии библиотеки

Версия
2.3.4