项目作者: fitzgen

项目描述 :
使用Operational Transformation的示例app
高级语言: JavaScript
项目地址: git://github.com/fitzgen/operational-transformation-example.git
创建时间: 2011-03-22T00:13:25Z
项目社区:https://github.com/fitzgen/operational-transformation-example

开源协议:MIT License

下载


Operational Transformation Example

This is an implementation of a real time collaborative document editor which
uses my Operational Transformation library.

Works with Node 0.4.X.

Installing and Running

  1. $ git clone https://github.com/fitzgen/operational-transformation-example.git
  2. $ cd operational-transformation-example/
  3. $ ./util/setup.sh
  4. $ cd src/
  5. $ node r.js server.js
  6. 25 Apr 21:56:13 - Your node instance does not have root privileges. This means that the flash XML policy file will be served inline instead of on port 843. This will slow down initial connections slightly.
  7. 25 Apr 21:56:13 - socket.io ready - accepting connections
  8. Listening on port 8080

Now just open a couple tabs in your browser and point them to
http://127.0.0.1:8080/ and you can create and collaboratively edit a plain text
document between the tabs. (At the time of this writing, April 25th 2011, you
have to use firebug or some other web inspector to find out what the document ID
is so that your second tab can join the first’s session).

Utility Scripts

  • ./util/setup.sh

    Run this to set up a fresh dev environment after you have cloned this
    repository. Pulls down dependencies, runs the RequireJS converter script on
    third party modules, etc.

  • ./util/clean.sh

    Reset the environment as if it were a fresh clone of the repo. Will need to
    call ./util/setup.sh once more to start developing again.

  • ./util/build.sh

    Will eventually create optimized builds of the client javascript. I haven’t
    gotten around to this yet though; it has been a low priority.