Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
@jumpn/absinthe-phoenix-socket
Advanced tools
Absinthe Phoenix Socket
All received and returned objects with the exception of AbsintheSocket instances (there are plans to make this immutable too) are treated in an immutable way. Objects have no methods and instead we provide independant stateless functions to interact with them.
If provided phoenix socket instance is not connected, then instead of connecting at creation time, connection will be established on the next invocation of send.
Pending mutations will be aborted, queries will be resent, and subscriptions reestablished.
Calling cancel removes given notifier from absintheSocket instance and sends a Cancel event to all its observers and unsubscribes in case it holds a subscription request.
If an already sent request is given to send, then instead of sending it again, the notifier associated with it will be returned.
Since connection lost is handled, then two events needs to exist to represent this fact: Error (recoverable), Abort (unrecoverable).
Calling send returns a notifier which allows attaching any number of observers that will be notified when result arrives.
For the case of subscriptions, Start event is dispatched when the subscription is established, while for the other types (queries and mutations), when the request is sent.
$ npm install --save @jumpn/absinthe-phoenix-socket
$ yarn add @jumpn/absinthe-phoenix-socket
// from @jumpn/utils-graphql
type GqlRequest<Variables: void | Object = void> = {
operation: string,
variables?: Variables
};
type Event = "Abort" | "Cancel" | "Error" | "Start" | "Result";
type Observer<Result> = {
onAbort: (error: Error) => any,
onCancel: (error: Error) => any,
onError: (error: Error) => any,
onStart: () => any,
onResult: (result: Result) => any
};
type Notifier<Result> = {
observers: Array<Observer<Result>>,
operationType: GqlOperationType,
request: GqlRequest<*>,
subscriptionId?: string
};
type AbsintheSocket = {
channel: Channel,
channelJoinCreated: boolean,
notifiers: Array<Notifier<any>>,
phoenixSocket: PhoenixSocket
};
Cancels a notifier sending a Cancel event to all its observers and unsubscribing in case it holds a subscription request
Parameters
absintheSocket
AbsintheSocketnotifier
Notifier<any>Examples
import * as AbsintheSocket from "@jumpn/absinthe-phoenix-socket";
AbsintheSocket.cancel(absintheSocket, notifier);
Returns AbsintheSocket
Creates an Absinthe Socket using the given Phoenix Socket instance
Parameters
phoenixSocket
PhoenixSocketExamples
import * as AbsintheSocket from "@jumpn/absinthe-phoenix-socket";
import {Socket as PhoenixSocket} from "phoenix";
const absintheSocket = AbsintheSocket.create(
new PhoenixSocket("ws://localhost:4000/socket")
);
Returns AbsintheSocket
Observes given notifier using the provided observer
Parameters
absintheSocket
AbsintheSocketnotifier
Notifier<Result>observer
Observer<Result>Examples
import AbsintheSocket from "@jumpn/absinthe-phoenix-socket"
const logEvent = eventName => (...args) => console.log(eventName, ...args);
const updatedNotifier = AbsintheSocket.observe(absintheSocket, notifier, {
onAbort: logEvent("abort"),
onError: logEvent("error"),
onStart: logEvent("open"),
onResult: logEvent("result")
});
Returns AbsintheSocket
Sends given request and returns an object (notifier) to track its progress (see observe function)
Parameters
absintheSocket
AbsintheSocketrequest
GqlRequest<any>Examples
import * as AbsintheSocket from "@jumpn/absinthe-phoenix-socket";
const operation = `
subscription userSubscription($userId: ID!) {
user(userId: $userId) {
id
name
}
}
`;
// This example uses a subscription, but the functionallity is the same for
// all operation types (queries, mutations and subscriptions)
const notifier = AbsintheSocket.send(absintheSocket, {
operation,
variables: {userId: 10}
});
Returns Notifier<any>
Creates an Observable that will follow the given notifier
Parameters
absintheSocket
AbsintheSocketnotifier
Notifier<Result>options
Object? (optional, default {}
)
Returns Observable
Detaches observer from notifier
Parameters
absintheSocket
AbsintheSocketnotifier
Notifier<any>observer
Observer<any>Examples
import * as AbsintheSocket from "@jumpn/absinthe-phoenix-socket";
AbsintheSocket.unobserve(absintheSocket, notifier, observer);
Returns AbsintheSocket
MIT :copyright: Jumpn Limited / Mauro Titimoli (mauro@jumpn.com)
FAQs
Absinthe Phoenix Socket
We found that @jumpn/absinthe-phoenix-socket demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.