
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@voiceflow/react-chat
Advanced tools
yarn add @voiceflow/react-chat
For a more complete example see our demo-react-chat repository.
import {
Chat,
ChatWindow,
Launcher,
SessionStatus,
SystemResponse,
TurnType,
UserResponse,
useRuntime,
} from '@voiceflow/react-chat';
import { useState } from 'react';
import { match } from 'ts-pattern';
const IMAGE = 'https://picsum.photos/seed/1/200/300';
const AVATAR = 'https://picsum.photos/seed/1/80/80';
const MyChat: React.FC = () => {
const [open, setOpen] = useState(false);
const runtime = useRuntime({
verify: { authorization: '< DIALOG API KEY >' },
session: { userID: '< UNIQUE USER ID >' },
});
const handleLaunch = async () => {
setOpen(true);
await runtime.launch();
};
const handleEnd = () => {
runtime.setStatus(SessionStatus.ENDED);
setOpen(false);
};
if (!open) {
return (
<span
style={{
position: 'absolute',
right: '2rem',
bottom: '2rem',
}}
>
<Launcher onClick={handleLaunch} />
</span>
);
}
return (
<div
style={{
position: 'absolute',
right: '1rem',
top: '3rem',
bottom: '3rem',
width: '400px',
border: '1px solid #ddd',
borderRadius: '8px',
overflowX: 'hidden',
overflowY: 'scroll',
}}
>
<ChatWindow.Container>
<Chat
title="My Assistant"
description="welcome to my assistant"
image={IMAGE}
avatar={AVATAR}
withWatermark
startTime={runtime.session.startTime}
hasEnded={runtime.isStatus(SessionStatus.ENDED)}
isLoading={!runtime.session.turns.length}
onStart={runtime.launch}
onEnd={handleEnd}
onSend={runtime.reply}
onMinimize={handleEnd}
>
{runtime.session.turns.map((turn, turnIndex) =>
match(turn)
.with({ type: TurnType.USER }, ({ id, type: _, ...props }) => <UserResponse {...props} key={id} />)
.with({ type: TurnType.SYSTEM }, ({ id, type: _, ...props }) => (
<SystemResponse
key={id}
{...props}
avatar={AVATAR}
isLast={turnIndex === runtime.session.turns.length - 1}
/>
))
.exhaustive()
)}
{runtime.indicator && <SystemResponse.Indicator avatar={AVATAR} />}
</Chat>
</ChatWindow.Container>
</div>
);
};
FAQs
voiceflow chat ui kit
The npm package @voiceflow/react-chat receives a total of 509 weekly downloads. As such, @voiceflow/react-chat popularity was classified as not popular.
We found that @voiceflow/react-chat demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.