User:Saul/electron

From Organic Design wiki
< User:Saul
Revision as of 22:38, 11 July 2018 by Saul (talk | contribs) (Create Vue Project)

This page is for my notes on using electron with vue.

Install

Electron CLI

sudo npm i -g electron # install electron globally.

If you get an error about not being able to create a folder, you can force it with

sudo npm i -g electron --unsafe-perm=true --allow-root

Create Vue Project

mkdir <PROJECT NAME> && cd <PROJECT NAME>
vue init webpack <PROJECT NAME> # create the project using the vue's cli.
npm i electron
npm i