Gathering detailed insights and metrics for chat-box-widget
Gathering detailed insights and metrics for chat-box-widget
Gathering detailed insights and metrics for chat-box-widget
Gathering detailed insights and metrics for chat-box-widget
@connectycube/chat-widget
A React component that seamlessly integrates ConnectyCube's real-time chat capabilities into your web applications. This widget offers an out-of-the-box solution for embedding chat features—such as instant messaging, user presence, and file sharing—withou
@upstash/rag-chat-widget
A customizable Reach chat widget that combines Upstash Vector for similarity search, Together AI for LLM, and Vercel AI SDK for streaming responses. This ready-to-use component provides an out of the box solution for adding RAG-Powered chat interfaces to
tourmie-chat-box
Custom Angular chat widget for Tourmie frontends
ssb-embedded-chat
A small widget for private chats between two people conducted via scuttlebutt. I will be using this for a game chat box for ssb-chess.
npm install chat-box-widget
Typescript
Module System
Node Version
NPM Version
JavaScript (89.84%)
CSS (8.61%)
HTML (1.55%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
25 Commits
1 Watchers
1 Branches
3 Contributors
Updated on Oct 29, 2018
Latest Version
1.0.2
Package Id
chat-box-widget@1.0.2
Unpacked Size
2.66 MB
Size
600.58 kB
File Count
18
NPM Version
5.10.0
Node Version
8.11.2
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
39
Forked from https://github.com/kingofthestack/react-chat-window. Same API.
react-live-chat
provides an intercom-like chat window that can be included easily in any project for free. It provides no messaging facilities, only the view component.
$ npm install react-chat-window
1import React, {Component} from 'react' 2import {render} from 'react-dom' 3import {Launcher} from '../../src' 4 5class Demo extends Component { 6 7 constructor() { 8 super(); 9 this.state = { 10 messageList: messageHistory 11 }; 12 } 13 14 _onMessageWasSent(message) { 15 this.setState({ 16 messageList: [...this.state.messageList, message] 17 }) 18 } 19 20 _sendMessage(text) { 21 if (text.length > 0) { 22 this.setState({ 23 messageList: [...this.state.messageList, { 24 author: 'them', 25 type: 'text', 26 data: { text } 27 }] 28 }) 29 } 30 } 31 32 render() { 33 return (<div> 34 <Launcher 35 agentProfile={{ 36 teamName: 'react-live-chat', 37 imageUrl: 'https://a.slack-edge.com/66f9/img/avatars-teams/ava_0001-34.png' 38 }} 39 onMessageWasSent={this._onMessageWasSent.bind(this)} 40 messageList={this.state.messageList} 41 showEmoji 42 /> 43 </div>) 44 } 45}
For more detailed examples see the demo folder.
Launcher
is the only component needed to use react-live-chat. It will react dynamically to changes in messages. All new messages must be added via a change in props as shown in the example.
Launcher props:
prop | type | description |
---|---|---|
*agentProfile | object | Represents your product or service's customer service agent. Fields: teamName, imageUrl |
onMessageWasSent | function(message) | Called when a message a message is sent with a message object as an argument. |
messageList | [message] | An array of message objects to be rendered as a conversation. |
showEmoji | bool | A bool indicating whether or not to show the emoji button |
Message objects are rendered differently depending on their type. Currently, only text and emoji types are supported. Each message object has an author
field which can have the value 'me' or 'them'.
1{ 2 author: 'them', 3 type: 'text', 4 data: { 5 text: 'some text' 6 } 7} 8 9{ 10 author: 'me', 11 type: 'emoji', 12 data: { 13 code: 'someCode' 14 } 15} 16
git clone https://github.com/DimitriMikadze/create-react-library.git
Install dependencies
npm install
or yarn install
Start development server
npm start
or yarn start
Runs the demo app in development mode. Open http://localhost:3000 to view it in the browser.
All library files are located inside src/lib
Is located inside src/demo
directory, here you can test your library while developing
npm run test
or yarn run test
npm run build
or yarn run build
Produces production version of library under the build
folder.
npm publish
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/25 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
156 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More