GithubHelp home page GithubHelp logo

nvdnkpr / synchroscope Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dtinth/synchroscope

0.0 2.0 0.0 512 KB

Realtime Angular.js scope syncing across multiple clients with Socket.IO

License: MIT License

synchroscope's Introduction

synchroscope ($YNC) (Build Status)

synchroscope makes it very easy in to share AngularJS scope variables across multiple clients. It can be used to make a real-time interactive web application that runs on multiple devices.

Demo

Demo Server

A demo server for Synchroscope is available at http://synchroscope.herokuapp.com/, so you can experiment with Synchroscope.

Note that the server may restart (and the database reset) at any time!

Client

Symlink or copy client/sync.js to your Angular project, and include it along with socket.io.js.

If you include CryptoJS.MD5 on your page, synchroscope will generate revision IDs based on the cryptographic hash of the content instead of random string, which may help prevent editing conflicts a little bit.

<script src="/socket.io/socket.io.js"></script>
<script src="path/to/md5.js"></script><!-- recommended -->
<script src="path/to/sync.js"></script>

Then, declare a dependency on synchroscope module, ask for the $ync service, and just call it:

angular.module('myApp', ['synchroscope'])
  .controller('MyController', function($scope, $ync) {

    $scope.hello = 'initial data'
    $scope.world = 'for synchroscope demo'
    $scope.foo = 'TRY IT!'

    var keys = ['hello', 'world']  // keys that you want to share
    var room = 'test'              // room name
    var sync = $ync($scope, keys, room)
    
  })

As soon as you call $ync, the keys hello and world will be synchronized across all browser clients who are in the same server and same room.

When the initial synchronization is made, the $scope.$ynchronized property will become true. You can check that property to display loading screen or something.

Specifying the Room and Server

The third argument for the $ync function can be in form of:

  • http://hostname:port/synchroscope#roomName
    • The server and path is specified before the hash sign.
  • roomName
    • The server is assumed to be the same server, with path /synchroscope. This is the same as /synchroscope#roomName.

Server

Let's assume that io is a Socket.IO server object obtained by something like this: var io = require('socket.io').listen(server). Just add this line to your server:

require('synchroscope').listen(io.of('/synchroscope'))

Projects Using synchroscope

Limitations

  • All synchronized data must be JSON.stringifyable (with the exception of undefined, which is handled specially).
  • This server stores all states in-memory. This server will not scale across multiple processes.
  • Each variable synchronizes on its own. If a client sets 2 variable at the same time, it is possible that other clients may receive one variable before another.
  • When the server is restarted, funny things may happen. (clients may go out of sync)
    • If you restart your web server often, then it may be a good idea to run a synchroscope server separately... as easy as node --eval 'require("synchroscope").listen(require("socket.io").listen(8008).of("/synchroscope"))'.

License

MIT.

synchroscope's People

Contributors

dtinth avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.