azure-web-pubsub-ts
Real-time messaging with WebSocket connections and pub/sub patterns.
npx skills add majiayu000/claude-skill-registry --skill azure-web-pubsub-ts --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
--- name: azure-web-pubsub-ts description: Build real-time messaging applications using Azure Web PubSub SDKs for JavaScript (@azure/web-pubsub, @azure/web-pubsub-client). Use when implementing WebSocket-based real-time features, pub/sub messaging, group chat, or live notifications. package: @azure/web-pubsub, @azure/web-pubsub-client --- # Azure Web PubSub SDKs for TypeScript Real-time messaging with WebSocket connections and pub/sub patterns. ## Installation ```bash # Server-side management npm install @azure/web-pubsub @azure/identity # Client-side real-time messaging npm install @azure/web-pubsub-client # Express middleware for event handlers npm install @azure/web-pubsub-express ``` ## Environment Variables ```bash WEBPUBSUB_CONNECTION_STRING=Endpoint=https://<resource>.webpubsub.azure.com;AccessKey=<key>;Version=1.0; WEBPUBSUB_ENDPOINT=https://<resource>.webpubsub.azure.com ``` ## Server-Side: WebPubSubServiceClient ### Authentication ```typescript import { WebPubSubServiceClient, AzureKeyCredential } from "@azure/web-pubsub"; import { DefaultAzureCredential } from "@azure/identity"; // Connection string const client = new WebPubSubServiceClient( process.env.WEBPUBSUB_CONNECT
- Installation
- Environment Variables
- Server-Side: WebPubSubServiceClient
- Authentication
- Generate Client Access Token
- Send Messages
- Group Management
- Connection Management
- Client-Side: WebPubSubClient
- Connect
- Event Handlers
- Express Event Handler
- Key Types
- Best Practices
Server-side management npm install @azure/web-pubsub @azure/identity Client-side real-time messaging npm install @azure/web-pubsub-client Express middleware for event handlers npm install @azure/web-pubsub-express
What does the azure-web-pubsub-ts skill do?
Real-time messaging with WebSocket connections and pub/sub patterns.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill azure-web-pubsub-ts --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
