gitextract_mf9vvmtx/ ├── .github/ │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── LICENSE.md ├── README.md ├── book.json ├── docs/ │ ├── LANGS.md │ ├── cn/ │ │ ├── README.md │ │ ├── SUMMARY.md │ │ ├── book.json │ │ ├── building_your_app.md │ │ ├── contributing.md │ │ ├── development.md │ │ ├── end-to-end_testing.md │ │ ├── entry_indexhtml.md │ │ ├── faqs.md │ │ ├── file-tree.md │ │ ├── getting_started.md │ │ ├── global_configuration.md │ │ ├── main-process.md │ │ ├── meta.md │ │ ├── migration-guide.md │ │ ├── miscellaneous.md │ │ ├── new-releases.md │ │ ├── npm_scripts.md │ │ ├── project_structure.md │ │ ├── renderer-process.md │ │ ├── savingreading-local-files.md │ │ ├── testing.md │ │ ├── unittesting.md │ │ ├── using-electron-builder.md │ │ ├── using-electron-packager.md │ │ ├── using-static-assets.md │ │ ├── using_css_frameworks.md │ │ ├── using_pre-processors.md │ │ ├── using_the_file_structure.md │ │ ├── vue_accessories.md │ │ └── webpack-configurations.md │ ├── en/ │ │ ├── README.md │ │ ├── SUMMARY.md │ │ ├── book.json │ │ ├── building_your_app.md │ │ ├── contributing.md │ │ ├── debugging-production.md │ │ ├── development.md │ │ ├── end-to-end_testing.md │ │ ├── entry_indexhtml.md │ │ ├── faqs.md │ │ ├── file-tree.md │ │ ├── getting_started.md │ │ ├── global_configuration.md │ │ ├── main-process.md │ │ ├── meta.md │ │ ├── migration-guide.md │ │ ├── miscellaneous.md │ │ ├── new-releases.md │ │ ├── npm_scripts.md │ │ ├── project_structure.md │ │ ├── renderer-process.md │ │ ├── savingreading-local-files.md │ │ ├── testing.md │ │ ├── unittesting.md │ │ ├── using-electron-builder.md │ │ ├── using-electron-packager.md │ │ ├── using-static-assets.md │ │ ├── using_css_frameworks.md │ │ ├── using_pre-processors.md │ │ ├── using_the_file_structure.md │ │ ├── vue_accessories.md │ │ └── webpack-configurations.md │ ├── ja/ │ │ ├── README.md │ │ ├── SUMMARY.md │ │ ├── book.json │ │ ├── building_your_app.md │ │ ├── contributing.md │ │ ├── development.md │ │ ├── end-to-end_testing.md │ │ ├── entry_indexhtml.md │ │ ├── faqs.md │ │ ├── file-tree.md │ │ ├── getting_started.md │ │ ├── global_configuration.md │ │ ├── main-process.md │ │ ├── meta.md │ │ ├── migration-guide.md │ │ ├── miscellaneous.md │ │ ├── new-releases.md │ │ ├── npm_scripts.md │ │ ├── project_structure.md │ │ ├── renderer-process.md │ │ ├── savingreading-local-files.md │ │ ├── testing.md │ │ ├── unittesting.md │ │ ├── using-electron-builder.md │ │ ├── using-electron-packager.md │ │ ├── using-static-assets.md │ │ ├── using_css_frameworks.md │ │ ├── using_pre-processors.md │ │ ├── using_the_file_structure.md │ │ ├── vue_accessories.md │ │ └── webpack-configurations.md │ ├── ko/ │ │ ├── README.md │ │ ├── SUMMARY.md │ │ ├── book.json │ │ ├── building_your_app.md │ │ ├── contributing.md │ │ ├── debugging-production.md │ │ ├── development.md │ │ ├── end-to-end_testing.md │ │ ├── entry_indexhtml.md │ │ ├── faqs.md │ │ ├── file-tree.md │ │ ├── getting_started.md │ │ ├── global_configuration.md │ │ ├── main-process.md │ │ ├── meta.md │ │ ├── migration-guide.md │ │ ├── miscellaneous.md │ │ ├── new-releases.md │ │ ├── npm_scripts.md │ │ ├── project_structure.md │ │ ├── renderer-process.md │ │ ├── savingreading-local-files.md │ │ ├── testing.md │ │ ├── unittesting.md │ │ ├── using-electron-builder.md │ │ ├── using-electron-packager.md │ │ ├── using-static-assets.md │ │ ├── using_css_frameworks.md │ │ ├── using_pre-processors.md │ │ ├── using_the_file_structure.md │ │ ├── vue_accessories.md │ │ └── webpack-configurations.md │ └── pt_BR/ │ ├── README.md │ ├── SUMMARY.md │ ├── book.json │ ├── building_your_app.md │ ├── contributing.md │ ├── development.md │ ├── end-to-end_testing.md │ ├── entry_indexhtml.md │ ├── faqs.md │ ├── file-tree.md │ ├── getting_started.md │ ├── global_configuration.md │ ├── main-process.md │ ├── meta.md │ ├── migration-guide.md │ ├── miscellaneous.md │ ├── new-releases.md │ ├── npm_scripts.md │ ├── project_structure.md │ ├── renderer-process.md │ ├── savingreading-local-files.md │ ├── testing.md │ ├── unittesting.md │ ├── using-electron-builder.md │ ├── using-electron-packager.md │ ├── using-static-assets.md │ ├── using_css_frameworks.md │ ├── using_pre-processors.md │ ├── using_the_file_structure.md │ ├── vue_accessories.md │ └── webpack-configurations.md ├── meta.js ├── package.json ├── template/ │ ├── .babelrc │ ├── .electron-vue/ │ │ ├── build.config.js │ │ ├── build.js │ │ ├── dev-client.js │ │ ├── dev-runner.js │ │ ├── webpack.main.config.js │ │ ├── webpack.renderer.config.js │ │ └── webpack.web.config.js │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .travis.yml │ ├── README.md │ ├── appveyor.yml │ ├── build/ │ │ └── icons/ │ │ └── icon.icns │ ├── dist/ │ │ ├── electron/ │ │ │ └── .gitkeep │ │ └── web/ │ │ └── .gitkeep │ ├── package.json │ ├── src/ │ │ ├── index.ejs │ │ ├── main/ │ │ │ ├── index.dev.js │ │ │ └── index.js │ │ └── renderer/ │ │ ├── App.vue │ │ ├── assets/ │ │ │ └── .gitkeep │ │ ├── components/ │ │ │ ├── LandingPage/ │ │ │ │ └── SystemInformation.vue │ │ │ └── LandingPage.vue │ │ ├── main.js │ │ ├── router/ │ │ │ └── index.js │ │ └── store/ │ │ ├── index.js │ │ └── modules/ │ │ ├── Counter.js │ │ └── index.js │ ├── static/ │ │ └── .gitkeep │ └── test/ │ ├── .eslintrc │ ├── e2e/ │ │ ├── index.js │ │ ├── specs/ │ │ │ └── Launch.spec.js │ │ └── utils.js │ └── unit/ │ ├── index.js │ ├── karma.conf.js │ └── specs/ │ └── LandingPage.spec.js └── tests/ ├── builds/ │ └── .gitkeep ├── builds.json ├── scaffold.js ├── scaffold.sh └── wine.sh