TowTruck from Mozilla Lab

Summary

TowTruck is an open-source, real-time collaboration tool from Mozilla Lab designed to integrate chat, voice chat, and shared mouse cursors directly into any webpage. It facilitates collaborative activities such as document review, code modification, or form completion by allowing users to interact on the same page. Built on HTML5 and WebRTC, TowTruck requires no plugins and is deployed by embedding a simple JavaScript snippet and an activation button. While currently best supported in Firefox Nightly and Chrome, it offers a straightforward method for adding real-time interactive features to web applications.

TowTruck is a real time collaboration tool developed by Mozilla lab, it can enable users to do real time chat, voice chat in any webpage. Both sides can see each other's mouse position, it will produce animation when mouse clicked. The classical application for collaborative sides is users can discuss a document while reading the same document or modify some codes or fill up an application form. TowTruck is an open source project.

It's very easy to deploy TowTruck, first you need to embed below JavaScript code in thetag of your HTML page.

<script>
  // Set to false or delete to disable analytics/tracking:
  TowTruckConfig_enableAnalytics = true;
</script>
<script src="https://towtruck.mozillalabs.com/towtruck.js"></script>

Then put the activation button at the page:

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

Below is how it works:

After the deployment, you can send the collaboration link to your friends. Mozilla TowTruck is a HTML5 application and it's based on WebRTC protocol, it doesn't need any plug in installed. But now only Firefox Nightly and Chrome support them well.

But many people don't think this project will be successful, they feel this is what Google has done in 2005. What do you think about it?

Source : http://www.36kr.com/p/202571.html

HTML5 TOWTRUCK MOZILLAR LAB

  RELATED

  COMMENTS

0

No comment for this article.