Skip to content

Commit

Permalink
merged manually
Browse files Browse the repository at this point in the history
  • Loading branch information
psugihara committed May 29, 2012
2 parents ca86ca5 + 5d94c31 commit d6d0b1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -6,6 +6,7 @@ The recent emergence of the WebSocket protocol has given developers a new tool t

Joint takes care of this repetitive, boilerplate configuration automatically so that the programmer can immediately begin work on the main application logic. The entire network architecture is abstracted into a few intuitive functions that facilitate seamless communication between server and client. Joint also allows functions on the server to be called like any other function on the client, and vice versa. Moreover once these connections are established, Joint provides convenient functions to help organize, search through, and keep track of them.


##Installation
Joint requires *node.js* and *npm*. Once you have these dependencies, simply:

Expand Down
1 change: 1 addition & 0 deletions docs/javascript_style.md
Expand Up @@ -10,6 +10,7 @@ This document lays out conventions for JavasScript in the Joint source code.
* Use line breaks between function definitions.
* Use 1 space before and after assignment operators.
* Use 1 space before and after function argument lists in declarations.
* Use 1 space before and after outer parens in conditionals and argument lists.
* Don't use spaces after `{`, `[`, or `(` or before `}`, `]`, or `)`.
* Terminate all expressions with semicolons.
* Always use `var` when initializing a variable. All variables should be local to the current scope.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -16,7 +16,7 @@
"node": "*"
},
"author": "Peter Sugihara <peter@campsh.com> (campsh.com/peter), Nick Pizzoferrato",
"description": "A hand-rolled real-time JS web framework for single page apps.",
"description": "A hand-rolled real-time node.js framework for connecting single page apps",
"homepage": "https://github.com/ptrsghr/joint",
"repository": {
"type": "git",
Expand Down

0 comments on commit d6d0b1c

Please sign in to comment.