Minimal Chat client script
Minimal Chat is an open source live chat system providing live one on one messaging to a website visitor and an operator.
Minimal Chat is:
- minimal: simple, lightweight, accessible
- extensible: modular, pluggable, hookable, composable
We're glad you're interested in contributing, feel free to create an issue or pick one up but first check out our contributing doc and code of conduct. Check out our design documentation as well.
Screenshot
The client script is embedded into a html page just before the </body>
tag.
Usage
<!-- Start of Async Minimal Chat Code -->
<script>
!function() {
o = document.createElement("script"),
o.type = "text/javascript", o.async = !0, o.crossorigin = "anonymous", o.src = "/mnml-0.2.0.min.js",
n = document.getElementsByTagName("script")[0], n.parentNode.insertBefore(o, n);
}();
</script>
<!-- End of Async Minimal Chat Code -->
Development
Developing for the client is fairly straight forward. All of the Minimal Chat repositories are run through make
. To get the code running:
- Clone the repository
make dependencies
make run
- Browse to http://localhost:3000