# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/uehuo4q
sse 實現消息實時推送- 前端如何處理流式數據**
前兩天會上有一個需求, 就是某個數據發生變化了, 需要給用戶提示一下, 這個時候呢, 我們就需要使用 SSE 服務了 那麼, 什麼是 SSE 呢? SSE 全稱叫做: Server-Sent Events, 該服務是一種服務器向客戶端推送實時更新的機制模式, Http 協議是無法實現服務端向客戶端主動推送消息, 但是呢, 可以向客戶端聲明, 要發送流信息, 所以該服務就是利用這個機制, 向客戶 ⌘ Read more