Gathering detailed insights and metrics for react-chat-screen
Gathering detailed insights and metrics for react-chat-screen
Gathering detailed insights and metrics for react-chat-screen
Gathering detailed insights and metrics for react-chat-screen
react-native-chat-screen
rc-danmaku
React bullet screen(danmaku) component | React 弹幕组件
react-clan-meeting
Official Clan Meeting Package For React Apps
@100mslive/react-native-hms
Integrate Real Time Audio and Video conferencing, Interactive Live Streaming, and Chat in your apps with 100ms React Native SDK. With support for HLS and RTMP Live Streaming and Recording, Picture-in-Picture (PiP), one-to-one Video Call Modes, Audio Rooms
npm install react-chat-screen
Typescript
Module System
JavaScript (82.46%)
HTML (10.61%)
CSS (6.93%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
30 Commits
2 Watchers
25 Branches
1 Contributors
Updated on Mar 27, 2020
Latest Version
0.1.9
Package Id
react-chat-screen@0.1.9
Unpacked Size
5.15 MB
Size
1.78 MB
File Count
33
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
24
1
To view in visual studio - command+shift+v (Mac)
SIMPLE DEMO
INSTALLATION
npm install react-chat-screen
yarn add react-chat-screen
QUICKSTART
1import React, { useState, useEffect } from 'react'; 2import ChatScreen from 'react-chat-screen'; 3 4 5function Example(){ 6 const[messageList, setMessageList] = useState([]) 7 const[msg, setMsg] = useState('') 8 useEffect(()=> { 9 let authorObj = { 10 author: 'self', 11 type: 'text', 12 data: { 13 text: 'hi' 14 } 15 } 16 setMessageList(messageList => [...messageList, authorObj]); 17 }, []) 18 19 20 const onSend = () => { 21 let authorObj = { 22 author: 'other', 23 type: 'text', 24 data: { 25 text: msg 26 } 27 } 28 setMessageList(messageList => [...messageList, authorObj]); 29 setMsg('') 30 } 31 return ( 32 <div > 33 <ChatScreen 34 messageList={messageList} 35 onSend={onSend} 36 sendLabel={true} 37 isWidget = {false} 38 otherBgColor="lime" 39 value = {msg} 40 onChange = {(e)=> setMsg(e.target.value)} 41 /> 42 </div> 43 ) 44} 45 46export default Example;
Plenty of props to play with!
1 <ChatScreen 2 messageList={[]} 3 onSend={()=>{}} 4 sendLabel={false} 5 isWidget = {false} 6 otherBgColor={""} 7 selfBgColor={""} 8 headingBgColor={""} 9 errorBorderColor={""} 10 focusBorderColor={""} 11 value = {""} 12 sendLabel={""} 13 sendBtnColor={""} 14 onChange = {()=>{}} 15 />
ROADMAP
CONTRIBUTING
yarn test
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/28 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
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
111 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