
Security News
New React Server Components Vulnerabilities: DoS and Source Code Exposure
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.
@brainfish-ai/web-widget
Advanced tools
This package provides a simple way to integrate a Brainfish in-app widget in your website or web application. It supports the standard style, and slide-in popup.
npm install @branfish-ai/web-widget
<script type="module">
import Brainfish from "https://cdn.jsdelivr.net/npm/@brainfish-ai/web-widget@latest/dist/web.js"
Brainfish.Widgets.init({ widgetKey: "your-key" });
</script>
<button class="brainfish-trigger-button" onClick="Brainfish.HelpWidget.open('brainfish-trigger-button')">Help</button>
<!-- The widget will emit events when it opens and closes. You can listen to these events by adding the following code to your website: -->
<!-- For close event: (onBrainfishHelpWidgetClosed) -->
<script>
window.addEventListener('onBrainfishHelpWidgetClosed', yourClosedHandlerFunction);
</script>
<!-- For opened event: (onBrainfishHelpWidgetOpened) -->
<script>
window.addEventListener('onBrainfishHelpWidgetOpened', yourOpenedHandlerFunction);
</script>
<!-- Make sure you remember to remove these event listeners when the widget is no longer needed. -->
<script>
window.removeEventListener('onBrainfishHelpWidgetClosed', yourClosedHandlerFunction);
window.removeEventListener('onBrainfishHelpWidgetOpened', yourOpenedHandlerFunction);
</script>
FAQs
Brainfish Widgets Manager
The npm package @brainfish-ai/web-widget receives a total of 1,947 weekly downloads. As such, @brainfish-ai/web-widget popularity was classified as popular.
We found that @brainfish-ai/web-widget demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.