Skip to content

Instantly share code, notes, and snippets.

@reverentgeek
Last active April 15, 2016 18:14
Show Gist options
  • Save reverentgeek/2de649b2e9f9a24379f658df70a7591f to your computer and use it in GitHub Desktop.
Save reverentgeek/2de649b2e9f9a24379f658df70a7591f to your computer and use it in GitHub Desktop.
Electron Workshop Prerequisites Setup
  • Install Visual Studio Code
  • Install Node.js v5.10
  • Open a Terminal / Command Window
  • Change to your documents folder (or where you store projects)

Mac:

cd ~/Documents

Windows:

cd "%userprofile%\My Documents"
  • Create a project folder
mkdir electron-workshop
cd electron-workshop
  • Initialize a package.json (defaults are ok)
npm init
  • Install required npm packages
npm install --save electron-prebuilt electron-reload
npm install --save-dev electron-packager electron-mocha chai
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment