Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
perMessageDeflate
Bun.serve({ // ... websocket: { // 启用压缩 perMessageDeflate: true, }, });
ws.send()
true
Bun.serve({ // ... websocket: { async message(ws, message) { // 发送压缩消息 ws.send(message, true); }, }, });