Updated docs
authorAlexandru Bau <alexandru.bau@outlook.com>
Fri, 23 Oct 2015 08:37:51 +0000 (11:37 +0300)
committerAlexandru Bau <alexandru.bau@outlook.com>
Fri, 23 Oct 2015 08:37:51 +0000 (11:37 +0300)
Updated docs to better understand how to use electron-rebuild on Windows

docs/tutorial/using-native-node-modules.md

index 491415b..305f30e 100644 (file)
@@ -31,8 +31,13 @@ which handles the manual steps of downloading headers and building native module
 ```sh
 npm install --save-dev electron-rebuild
 
-# Every time you run npm install, run this
+# Every time you run "npm install", run this
+
+# Linux or Mac
 node ./node_modules/.bin/electron-rebuild
+
+# Windows
+./node_modules/.bin/electron-rebuild
 ```
 
 ### The npm Way