Agent skill · DevOps & Cloud

azure-web-pubsub-ts

Real-time messaging with WebSocket connections and pub/sub patterns.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/api/azure-web-pubsub-ts/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

--- 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

What's inside
Steps it walks through
  1. Installation
  2. Environment Variables
  3. Server-Side: WebPubSubServiceClient
  4. Authentication
  5. Generate Client Access Token
  6. Send Messages
  7. Group Management
  8. Connection Management
  9. Client-Side: WebPubSubClient
  10. Connect
  11. Event Handlers
  12. Express Event Handler
  13. Key Types
  14. Best Practices
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
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.

Keep going