
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
saas-chat-widget
Advanced tools
A customizable chat widget for integrating SaaS Chat into your website or application.
npm install saas-chat-widget
yarn add saas-chat-widget
<script type="module">
import SaaSChatWidget from 'saas-chat-widget';
const chatWidget = new SaaSChatWidget({
apiKey: 'YOUR_API_KEY',
organization: 'your-organization',
});
</script>
<script src="https://unpkg.com/saas-chat-widget/dist/index.umd.js"></script>
<script>
const chatWidget = new SaaSChatWidget({
apiKey: 'YOUR_API_KEY',
organization: 'your-organization',
});
</script>
<script
src="https://unpkg.com/saas-chat-widget/dist/index.umd.js"
data-api-key="YOUR_API_KEY"
data-organization="your-organization"
data-primary-color="#6366f1"
data-header-text="Chat Support"
></script>
| Option | Type | Default | Description |
|---|---|---|---|
| apiKey | string | null | Your API key (required) |
| organization | string | null | Your organization ID or slug (required) |
| userId | string | auto-generated | Custom user ID for the visitor |
| userName | string | "Website Visitor" | Name of the visitor |
| userEmail | string | null | Email of the visitor |
| apiUrl | string | "https://api.saas-chat.com" | API URL |
| socketUrl | string | "https://api.saas-chat.com" | Socket URL |
| position | "right" or "left" | "right" | Position of the widget |
| primaryColor | string | "#6366f1" | Primary color for the widget |
| headerText | string | "Chat Support" | Text displayed in the widget header |
| placeholder | string | "Type a message..." | Placeholder text for the input field |
| welcomeMessage | string | "Hello! How can we help you today?" | Initial message shown to users |
| autoOpen | boolean | false | Automatically open the chat widget on page load |
| debug | boolean | false | Enable debug mode for troubleshooting |
Opens the chat widget.
chatWidget.open();
Closes the chat widget.
chatWidget.close();
Removes the chat widget from the DOM and disconnects the socket.
chatWidget.destroy();
MIT
FAQs
Embeddable chat widget for SaaS Chat
The npm package saas-chat-widget receives a total of 4 weekly downloads. As such, saas-chat-widget popularity was classified as not popular.
We found that saas-chat-widget demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.