{"id":14989761,"url":"https://github.com/robertcorponoi/electron-vue3-ts-quick-start","last_synced_at":"2025-04-12T01:21:49.570Z","repository":{"id":96308596,"uuid":"319479479","full_name":"robertcorponoi/electron-vue3-ts-quick-start","owner":"robertcorponoi","description":"Easy to use template for creating an app with Electron, Vue3, and Typescript","archived":false,"fork":false,"pushed_at":"2020-12-08T00:26:57.000Z","size":14,"stargazers_count":19,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-06T22:44:02.256Z","etag":null,"topics":["babel","chai","electron","eslint","mocha","quick-start","quickstart","template","ts","typescript","vue","vue3"],"latest_commit_sha":null,"homepage":"","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/robertcorponoi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-12-08T00:22:51.000Z","updated_at":"2024-08-13T08:13:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"ef525134-8a79-4ac7-ad7f-9019a7f4b8f5","html_url":"https://github.com/robertcorponoi/electron-vue3-ts-quick-start","commit_stats":{"total_commits":2,"total_committers":1,"mean_commits":2.0,"dds":0.0,"last_synced_commit":"bf8b01153498fcc6974df2f64fc6c94801bbf605"},"previous_names":[],"tags_count":1,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertcorponoi%2Felectron-vue3-ts-quick-start","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertcorponoi%2Felectron-vue3-ts-quick-start/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertcorponoi%2Felectron-vue3-ts-quick-start/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertcorponoi%2Felectron-vue3-ts-quick-start/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robertcorponoi","download_url":"https://codeload.github.com/robertcorponoi/electron-vue3-ts-quick-start/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248501893,"owners_count":21114695,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["babel","chai","electron","eslint","mocha","quick-start","quickstart","template","ts","typescript","vue","vue3"],"created_at":"2024-09-24T14:18:52.669Z","updated_at":"2025-04-12T01:21:49.551Z","avatar_url":"https://github.com/robertcorponoi.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg width=\"250\" height=\"250\" src=\"https://github.com/robertcorponoi/graphics/blob/master/electron-vue3-ts-quick-start/logo/logo.png?raw=true\"\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eElectron Vue3 Typescript Quick Start\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003eEasy to use template for creating an app with Electron, Vue3, and Typescript\u003cp\u003e\n\nThis is a vue3 application created with the [vue-cli](https://cli.vuejs.org/) with Electron added on.\n\n## **Table of Contents**\n\n- [Features](#features)\n- [Scripts](#scripts)\n\n## **Features**\n\n- [Vue3](https://v3.vuejs.org/)\n- [Babel](https://babeljs.io/)\n- [ESLint](https://eslint.org/)\n- [Mocha](https://mochajs.org/) \u0026 [Chai](https://www.chaijs.com/) for testing.\n- [Typescript](https://www.typescriptlang.org/) support for Vue components\n- [electron-reloader](https://github.com/sindresorhus/electron-reloader) to reload the app on changes\n- [electron-builder](https://github.com/electron-userland/electron-builder) for packaging and building your Electron app.\n- [dotenv](https://github.com/motdotla/dotenv) to load environment variables\n\n## **Scripts**\n\n- `npm run start`: Starts the Electron app.\n- `npm run build:dev`: Builds the Vue app to the `dist` directory which is used by Electron to display the app.\n- `npm run build:dev:watch`: The same as above except it watches for and reloads on changes.\n- `npm run build:prod`: Creates a production ready build.\n- `npm run test:unit`: Runs the unit tests defined under `test/unit`.\n- `npm run lint`: Runs ESLint to check for issues.\n- `npm run dist`: Runs `npm run build:prod` and then calls electron-builder to package the Electron app.\n- `npm run dist:mac`: Runs `npm run build:prod` and then calls electron-builder to package the Electron app for OSX.\n- `npm run dist:linux`: Runs `npm run build:prod` and then calls electron-builder to package the Electron app for a Linux environment.\n- `npm run dist:windows`: Runs `npm run build:prod` and then calls electron-builder to package the Electron app for Windows.\n- `npm run dist:all`: Runs `npm run build:prod` and then calls electron-builder to package the Electron for OSX, Linux, and Windows.\n\n## **Instructions**\n\n1. Clone the repository\n2. Run `npm install` to install the dependencies needed.\n\nTo develop, you need to follow the steps below every time you begin working on it:\n\n1. First you want to run `npm run build:dev:watch` to build the `dist` directory and watch for changes to your Vue templates/components.\n2. Run `npm run start` to start Electron.\n\nNow, with both of these running, whenever you make a change to the files Electron uses or the Vue files, the Electron window will update automatically.\n\n**Note:** The electron files are not Typescript so that they can be reloaded with electron-reloader.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertcorponoi%2Felectron-vue3-ts-quick-start","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobertcorponoi%2Felectron-vue3-ts-quick-start","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertcorponoi%2Felectron-vue3-ts-quick-start/lists"}