From dab9dad9dbb1ef5631a4b95393e2a5b14a46dc7c Mon Sep 17 00:00:00 2001 From: Xue Fuqiao Date: Wed, 4 Mar 2015 16:18:51 +0800 Subject: [PATCH] Update quick-start.md node-webkit has been renamed to nw.js. --- docs/tutorial/quick-start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/quick-start.md b/docs/tutorial/quick-start.md index 60915221435..adfc9d8332f 100644 --- a/docs/tutorial/quick-start.md +++ b/docs/tutorial/quick-start.md @@ -35,9 +35,9 @@ support. Normal web pages are designed to not reach outside of the browser, which makes them unsuitable for interacting with native systems. Atom-shell provides Node.js APIs in web pages so you can access native resources from web pages, just like -[Node-Webkit](https://github.com/rogerwang/node-webkit). +[nw.js](https://github.com/nwjs/nw.js). -But unlike Node-Webkit, you cannot do native GUI related operations in web +But unlike nw.js, you cannot do native GUI related operations in web pages. Instead you need to do them on the browser side by sending messages to it, or using the easy [remote](../api/remote.md) module.