Skip to content

Commit d6d0b1c

Browse files
committed
merged manually
2 parents ca86ca5 + 5d94c31 commit d6d0b1c

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ The recent emergence of the WebSocket protocol has given developers a new tool t
66

77
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.
88

9+
910
##Installation
1011
Joint requires *node.js* and *npm*. Once you have these dependencies, simply:
1112

docs/javascript_style.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This document lays out conventions for JavasScript in the Joint source code.
1010
* Use line breaks between function definitions.
1111
* Use 1 space before and after assignment operators.
1212
* Use 1 space before and after function argument lists in declarations.
13+
* Use 1 space before and after outer parens in conditionals and argument lists.
1314
* Don't use spaces after `{`, `[`, or `(` or before `}`, `]`, or `)`.
1415
* Terminate all expressions with semicolons.
1516
* Always use `var` when initializing a variable. All variables should be local to the current scope.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"node": "*"
1717
},
1818
"author": "Peter Sugihara <[email protected]> (campsh.com/peter), Nick Pizzoferrato",
19-
"description": "A hand-rolled real-time JS web framework for single page apps.",
19+
"description": "A hand-rolled real-time node.js framework for connecting single page apps",
2020
"homepage": "https://github.com/ptrsghr/joint",
2121
"repository": {
2222
"type": "git",

0 commit comments

Comments
 (0)