minimalchat / client
- среда, 1 ноября 2017 г. в 03:14:35
Client library for Minimal Chat
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:
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.
The client script is embedded into a html page just before the </body>
tag.
<!-- 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 -->
Developing for the client is fairly straight forward. All of the Minimal Chat repositories are run through make
. To get the code running:
make dependencies
make run