📜 ⬆️ ⬇️

TogetherJS: add teamwork to the site

Mozilla Labs has released the open-source library, TogetherJS , through which it is easy to add real-time collaboration to the site.

The library is written in JavaScript, does not require installation of any plug-ins or software from visitors, everything works right away in the browser.

To install, just copy and paste the library and HTML snippet. TogetherJS is friendly to the existing site structure: the script does not change anything on the site, only adds a small button . By pressing the additional menu opens and a unique link appears for sending to colleagues. Anyone who opens this link will join the group work on this document.


')
TogetherJS has several additional features:


To try TogetherJS in action, you need to insert a snippet code on the page ...

<script src="https://togetherjs.com/togetherjs-min.js"></script> 

... and buttons.

 <button onclick="TogetherJS(this); return false;">Start TogetherJS</button> 

Documentation
Github code

Source: https://habr.com/ru/post/194486/


All Articles