
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@chatfall/client
Advanced tools

Chatfall is a fully-featured self-hosted commenting system for easily adding comments to any webpage.
This package contains only the client widget for embedding into your website.
Please see the root repository for more details.
We recommend loading this package at runtime via a CDN instead of bundling it into your code. For example:
<script>
const iframe = document.createElement('iframe');
// BEGIN: edit these values to match your needs
iframe.width = '100%';
iframe.height = '100%';
iframe.style.border = 'none';
const serverUrl = 'http://localhost:3000'; // URL to your Chatfall server
const rootElement = document.getElementById('root');
const version = '0.18.0'; // replace with the version of the Chatfall server you are running
// END
iframe.srcdoc = `
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@chatfall/client@${version}/dist/chatfall.css" crossorigin="anonymous" />
<script type="module">
import { Chatfall } from 'https://cdn.jsdelivr.net/npm/@chatfall/client@${version}/dist/chatfall.es.js';
Chatfall.init({
serverUrl: '${serverUrl}',
pageUrl: '${location.href}',
});
<\/script>
`;
rootElement.appendChild(iframe)
</script>
Read the official documentation for usage instructions.
See LICENSE.md
FAQs
A self-hosted, lightweight commenting system for your website.
We found that @chatfall/client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.