Skip to content

Commit

Permalink
Edited README to be inline with new changes
Browse files Browse the repository at this point in the history
  • Loading branch information
josephg committed Aug 11, 2011
1 parent 9606b8d commit 5f51f3d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
**WARNING: This is still pretty beta.**

ShareJS
=======

Expand Down Expand Up @@ -127,6 +129,7 @@ The easiest way to get your code running is to check sharejs out from source and

See the [wiki](https://github.com/josephg/ShareJS/wiki) for documentation.

Its also possible to use sharejs without ace. See the textarea example for details.

Writing a client using node.js
------------------------------
Expand All @@ -142,7 +145,7 @@ Run this from a couple terminal windows when sharejs is running to see it go.
// Open the 'hello' document, which should have type 'text':
client.open('hello', 'text', {host: 'localhost', port: 8000}, function(doc, error) {
// Insert some text at the start of the document (position 0):
doc.submitOp({i:"Hi there!\n", p:0});
doc.insert("Hi there!\n", 0);

// Get the contents of the document for some reason:
console.log(doc.snapshot);
Expand Down

0 comments on commit 5f51f3d

Please sign in to comment.