Difference between revisions of "User:Saul/electron"
From Organic Design wiki
m (→Create Vue Project) |
m (→Create Vue Project) |
||
Line 15: | Line 15: | ||
mkdir <PROJECT NAME> && cd <PROJECT NAME> | mkdir <PROJECT NAME> && cd <PROJECT NAME> | ||
vue init webpack <PROJECT NAME> # create the project using the vue's cli. | vue init webpack <PROJECT NAME> # create the project using the vue's cli. | ||
+ | npm i electron | ||
npm i | npm i | ||
</source> | </source> |
Revision as of 22:38, 11 July 2018
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