Skip to content
On this page

useEventSource

Category
Last Changed
7 months ago

An EventSource or Server-Sent-Events instance opens a persistent connection to an HTTP server, which sends events in text/event-stream format.

Usage

import { useEventSource } from '@vueuse/core'

const { status, data, error, close } = useEventSource('https://event-source-url')
import { useEventSource } from '@vueuse/core'

const { status, data, error, close } = useEventSource('https://event-source-url')
StateTypeDescription
statusRef<string>A read-only value representing the state of the connection. Possible values are CONNECTING (0), OPEN (1), or CLOSED (2)
dataRef<string | null>Reference to the latest data received via the EventSource, can be watched to respond to incoming messages
eventSourceRef<EventSource | null>Reference to the current EventSource instance
MethodSignatureDescription
close() => voidCloses the EventSource connection gracefully.

Type Declarations

export declare type UseEventSourceOptions = EventSourceInit
/**
 * Reactive wrapper for EventSource.
 *
 * @see https://vueuse.org/useEventSource
 * @see https://developer.mozilla.org/en-US/docs/Web/API/EventSource/EventSource EventSource
 * @param url
 * @param events
 * @param options
 */
export declare function useEventSource(
  url: string,
  events?: Array<string>,
  options?: UseEventSourceOptions
): {
  eventSource: Ref<EventSource | null>
  event: Ref<string | null>
  data: Ref<string | null>
  status: Ref<"OPEN" | "CONNECTING" | "CLOSED">
  error: Ref<Event | null>
  close: () => void
}
export declare type UseEventListenerReturn = ReturnType<typeof useEventListener>
export declare type UseEventSourceOptions = EventSourceInit
/**
 * Reactive wrapper for EventSource.
 *
 * @see https://vueuse.org/useEventSource
 * @see https://developer.mozilla.org/en-US/docs/Web/API/EventSource/EventSource EventSource
 * @param url
 * @param events
 * @param options
 */
export declare function useEventSource(
  url: string,
  events?: Array<string>,
  options?: UseEventSourceOptions
): {
  eventSource: Ref<EventSource | null>
  event: Ref<string | null>
  data: Ref<string | null>
  status: Ref<"OPEN" | "CONNECTING" | "CLOSED">
  error: Ref<Event | null>
  close: () => void
}
export declare type UseEventListenerReturn = ReturnType<typeof useEventListener>

Source

SourceDocs

Contributors

Anthony Fu
Antério Vieira
Shinigami
江麻妞
Shinigami
Alex Kozack
Johnson Chen
Charles

Changelog

v6.9.2 on 11/19/2021
eda5d - feat: add options (#939)
useEventSource has loaded