|
@@ -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:
|