This is a package that provides accurate TypeScript type definitions and basic message wrappers for the WAMP protocol.
This package doesn't do much by itself. It lets other code, like client and router implementations, use a uniform set of typed and wrappers for working with the WAMP protocol.
These work in both JS and TS.
Via the WampType
enum:
import { WampType } from "typed-wamp";
let x = WampType.HELLO;
let y = WampType.GOODBYE;
These are object versions of WAMP messages, that support properties and methods. They are easier to work with than naked arrays.
Craft using a constructor:
import { Wamp } from "typed-wamp";
let msgGoodbye = new Wamp.Goodbye({}, "goodbye reason");
let msgHello = new Wamp.Hello("realm", { /* ... */ });
Parse from an array object:
let raw = [1, "realm", helloDetails];
let parsed = Wamp.parse(raw);
Turn back to raw form:
let raw2 = parsed.toRaw();
console.log(raw2); // [1, "realm", helloDetails]
URIs mentioned in the WAMP specification.
import { WampUri } from "typed-wamp";
let reason = WampUri.Error.NotAuthorized; // wamp.error.not_authorized
let onRegisterTopicName = WampUri.Registration.OnRegister; // wamp.registration.on_register
These only make sense from TypeScript.
These are in the namespace WampRaw
.
import { WampRaw, WampType } from "typed-wamp";
import { WampType } from "typed-wamp";
let x: WampRaw.Hello = [WampType.HELLO, "realm", {...}];
Type definitions for things like the HELLO message details
field.
import {HelloDetails} from "typed-wamp";
let helloDetails: HelloDetails = {
agent: "wampus",
roles: {
publisher: {
features: {
subscriber_blackwhite_listing: true
}
}
},
// ...
};
This package intentionally doesn't address any specific authentication method, so it doesn't include specific wrappers for wampcra
authentication (except for wrappers and types describing general Challenge
and Authenticate
messages).