Update url (#7598)

* Update EventEmitter URL

* Update EventEmitter URL

* Enable click

* Update EventEmitter URL

* Update EventEmitter URL

* Update URL

* Update URL

* Update EventEmitter URL

* Tweak sentence and add perios
This commit is contained in:
Long Nhat Nguyen 2016-10-13 21:09:14 +00:00 committed by Kevin Sawicki
parent 0756aa663b
commit c017a7a1c7
8 changed files with 10 additions and 12 deletions

View file

@ -2,7 +2,7 @@
> How to use Node.js and Electron APIs.
All of [Node.js's built-in modules](http://nodejs.org/api/) are available in
All of [Node.js's built-in modules](https://nodejs.org/api/) are available in
Electron and third-party node modules also fully supported as well (including
the [native modules](../tutorial/using-native-node-modules.md)).
@ -13,7 +13,7 @@ both processes.
The basic rule is: if a module is [GUI][gui] or low-level system related, then
it should be only available in the main process. You need to be familiar with
the concept of [main process vs. renderer process](../tutorial/quick-start.md#the-main-process)
the concept of [main process vs. renderer process](../tutorial/quick-start.md#main-process)
scripts to be able to use those modules.
The main process script is just like a normal Node.js script: