Merge pull request #246 from Dorian/patch-1

Update quick-start.md: Minor wording changes
This commit is contained in:
Cheng Zhao 2014-05-07 08:38:04 +08:00
commit d0b8b478fc

View file

@ -19,10 +19,9 @@ scripts. The server side JavaScript, is the scrips that run on the node.js
runtime, and the client side JavaScript, is the ones that run on user's browser. runtime, and the client side JavaScript, is the ones that run on user's browser.
In atom-shell we have similar concepts, since atom-shell displays GUI by showing In atom-shell we have similar concepts, since atom-shell displays GUI by showing
web pages, we would have scripts that run in the web page, and also have scripts web pages, we would have **scripts that run in the web page**, and also have
ran by the atom-shell runtime, which created those web pages. Like node.js, we **scripts ran by the atom-shell runtime**, which created those web pages.
call the former ones client client scripts, and the latter one browser side Like node.js, we call them **client scripts**, and **browser scripts**.
scripts.
In traditional node.js applications, communication between server side and In traditional node.js applications, communication between server side and
client side are usually done by web sockets. In atom-shell, we have provided client side are usually done by web sockets. In atom-shell, we have provided