# 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/gkapq5a
Vite 的實現原理,確實很巧妙**
vite 是新興的構建工具,它相比 webpack 最大的特點就是快。那它是如何做到這麼快的呢?因爲 vite 在開發環境並不做打包。我們創建個 vite 項目:npx create-vite安裝依賴,然後把服務跑起來:npm installnpm run dev瀏覽器訪問下:本地是 main.tsx 引入了 App.tsx,並且還有 react 和 react-dom/client 的依賴:用 ⌘ Read more