The code examples and example apps to go along with the Developing an Electron Edge book by Adam Lynch and Max Gfeller (Bleeding Edge Press).
If you spot any mistakes, feel free to create an issue or pull-request. Enjoy!
- In chapter 1,
bindings.gyp
should have been namedbinding.gyp
. The file has been updated in this repository. See #4. - This is frustrating but the
remote
module was required incorrrectly three times (see page 50 for example). Instead ofrequire('remote')
, it should have beenrequire('electron').remote
. This has been corrected in all applicable examples in this repository. This was a stupid mistake on our part. We're sorry. See #7