SimulatedGREG / electron-vue

An Electron & Vue.js quick start boilerplate with vue-cli scaffolding, common Vue plugins, electron-packager/electron-builder, unit/e2e testing, vue-devtools, and webpack.
https://simulatedgreg.gitbooks.io/electron-vue/content/
MIT License
15.46k stars 1.54k forks source link

Is this project still maintained? #1045

Open rodrigomata opened 3 years ago

rodrigomata commented 3 years ago
Describe the issue / bug.

Is this project still maintained? I followed the Getting started guide and I'm unable to use yarn run dev. I see the dependencies under package.json to also be outdated, being the most critical electron@2.0.4, whereas Electron is currently at v10.

How can I reproduce this problem?

Follow the steps provided in the Getting started guide:

# Install vue-cli and scaffold boilerplate
npm install -g vue-cli
vue init simulatedgreg/electron-vue my-project

# Install dependencies and run your app
cd my-project
yarn # or npm install
yarn run dev # or npm run dev
If visual, provide a screenshot.

Screen Shot 2020-09-19 at 18 27 37

webdq commented 3 years ago

https://auth0.com/blog/electron-tutorial-building-modern-desktop-apps-with-vue-js/

compilelife commented 3 years ago

Thanks to @webdq , problem solved.

Furthermore, we can fork this repository to create a working one.

My fix: https://github.com/compilelife/electron-vue/commit/9322d08267a60243e71a9a3f4c0ffb391a83a265

Usage:

vue init compilelife/electron-vue test
cd test
yarn
yarn run dev
MatthiasKirsch commented 3 years ago

Thanks @webdq for sharing this link. It worked for me but it still confuses me that electron-vue has the old electron version etc.