# 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/345niqa
關於 zustand 的一些最佳實踐**
前言看過我文章的人,應該知道React狀態管理庫中我比較喜歡使用 Zustand 的,因爲使用起來非常簡單,沒有啥心智負擔。這篇文章給大家分享一下,我這段時間使用 zustand 的一些心得和個人認爲的最佳實踐。優化在 React 項目裏,最重要優化可能就是解決重複渲染的問題了。使用 zustand 的時候,如果不小心,也會導致一些沒用的渲染。舉個例子:創建一個存放主題和語言類型的 storeim ⌘ Read more