Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
stream-chat-react
Advanced tools
React components to create chat conversations or livestream style chat
With these chat components you can support any type of chat use case:
The best place to start is the React Chat Tutorial
You'll also want to review the React Chat Component Documentation.
If you're customizing the components it's important to learn how the Chat Server API works. You can read about that in the Chat API docs.
If a component implements a ton of logic it's nice if you split it out into 2 Components The top level component which handles all the logic, and a lower level component which just handles rendering. This makes it easy to change the rendering without having to touch the other stuff. Have a look at Message and MessageTeam to see how this approach works.
Make things configurable via the props where possible. Sometimes an even better approach is to use the props.children approach. Have a look at how flexible the channel layout is due to this approach:
<Channel>
<ChannelHeader type="Team" />
<MessageList />
<MessageInput focus />
<Thread />
</Channel>
Since chat can get pretty active it's important to pay attention to performance. For every component either:
You can verify if the update behaviour is correct by sticking this code in your component:
import React from 'react';
import diff from 'shallow-diff';
export default class MyComponent extends React.Component {
shouldComponentUpdate(nextProps) {
console.log(diff(this.props, nextProps));
}
}
Note that the PureComponent uses a shallow diff to determine if a component should rerender upon state change. The regular Component simply always rerenders when there is a state change.
You can read more about PureComponents and common gotchas here: https://codeburst.io/when-to-use-component-or-purecomponent-a60cfad01a81
You want the shallow diff to only be true if something actually changed. Common mistakes that hurt performance are:
FAQs
React components to create chat conversations or livestream style chat
We found that stream-chat-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 9 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.