useEffect(() => { // 너와 나의 연결고리 만들어 주기 const sseEvents = new EventSource('http://localhost:3000/sse') sseEvents.onopen = function() { // 연결 됐을 때 } sseEvents.onerror = function (error) { // 에러 났을 때 } sseEvents.onmessage = function (stream) { // 메세지 받았을 때 const parsedData = JSON.parse(stream.data) } }, [])
Web EventSource
Created
Created
2021 Dec 5 12:15Refs
Refs
SSE