
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@linktr.ee/messaging-react
Advanced tools
React messaging components built on messaging-core for web applications
React messaging components built on @linktr.ee/messaging-core for web applications.
Main container component that provides complete messaging interface.
import { MessagingShell, MessagingProvider } from '@linktr.ee/messaging-react';
<MessagingProvider user={user} serviceConfig={config} apiKey={apiKey}>
<MessagingShell
capabilities={{
showStartConversation: true,
participantSource: followersSource,
participantLabel: 'followers'
}}
/>
</MessagingProvider>
// Uses existing adapters and data sources
import { createFollowersParticipantSource } from '../adapters/followersAdapter';
const capabilities = {
showStartConversation: true,
participantSource: createFollowersParticipantSource(),
participantLabel: 'followers'
};
// Custom data sources for Next.js environment
const capabilities = {
showStartConversation: true,
participantSource: createCustomParticipantSource(),
attachmentSource: createLinksAttachmentSource()
};
// Use individual components in existing layouts
<div className="sidebar">
<ChannelList onChannelSelect={handleSelect} />
</div>
<div className="main">
<ChannelView channel={selectedChannel} />
</div>
The package uses a capability-based architecture to customize functionality:
interface MessagingCapabilities {
showStartConversation?: boolean;
showAttachments?: boolean;
participantSource?: ParticipantSource;
attachmentSource?: AttachmentSource;
participantLabel?: string; // e.g., "followers", "team members"
attachmentLabel?: string; // e.g., "links", "files"
}
Interface for loading conversation participants:
interface ParticipantSource {
loadParticipants: (options?: {
search?: string;
limit?: number;
cursor?: string;
}) => Promise<{
participants: Participant[];
hasMore: boolean;
nextCursor?: string;
}>;
totalCount?: number;
loading?: boolean;
}
Interface for loading attachments like links or files.
✅ Core messaging functionality ✅ Follower participant selection ✅ Responsive design ✅ TypeScript safety ⏳ Attachment system (planned) ⏳ Advanced customization options (planned)
FAQs
React messaging components built on messaging-core for web applications
We found that @linktr.ee/messaging-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 120 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.