{"id":16434513,"url":"https://github.com/zce/vue-devtools","last_synced_at":"2025-03-26T22:11:02.854Z","repository":{"id":9884003,"uuid":"63657838","full_name":"zce/vue-devtools","owner":"zce","description":"An electron devtools extension for debugging Vue.js applications.","archived":false,"fork":false,"pushed_at":"2023-10-05T19:22:43.000Z","size":1212,"stargazers_count":61,"open_issues_count":18,"forks_count":23,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-17T10:04:25.917Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zce.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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},"funding":{"github":"zce"}},"created_at":"2016-07-19T03:40:48.000Z","updated_at":"2023-07-18T14:46:51.000Z","dependencies_parsed_at":"2024-06-18T14:06:12.984Z","dependency_job_id":"d71f19e0-5a8f-451e-8192-6c4447859496","html_url":"https://github.com/zce/vue-devtools","commit_stats":{"total_commits":75,"total_committers":7,"mean_commits":"10.714285714285714","dds":0.5866666666666667,"last_synced_commit":"50a4fa4f132977cea7949ebf28d33bce8978f37c"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zce%2Fvue-devtools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zce%2Fvue-devtools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zce%2Fvue-devtools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zce%2Fvue-devtools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zce","download_url":"https://codeload.github.com/zce/vue-devtools/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245249229,"owners_count":20584497,"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":[],"created_at":"2024-10-11T08:49:22.700Z","updated_at":"2025-03-26T22:11:02.835Z","avatar_url":"https://github.com/zce.png","language":"JavaScript","funding_links":["https://github.com/sponsors/zce"],"categories":[],"sub_categories":[],"readme":"# vue-devtools\n\n[![Build Status][travis-image]][travis-url]\n[![NPM Downloads][downloads-image]][downloads-url]\n[![NPM Version][version-image]][version-url]\n[![License][license-image]][license-url]\n[![Dependency Status][dependency-image]][dependency-url]\n[![devDependency Status][devdependency-image]][devdependency-url]\n[![Code Style][style-image]][style-url]\n\n\u003e An electron devtools extension for debugging Vue.js applications.\n\n## Installation\n\n```sh\n$ yarn add vue-devtools -D\n\n# or npm\n$ npm install vue-devtools --save-dev\n```\n\n## Usage\n\n### Installing\n\ncalling `install` in your `main.js`\n\n```js\nconst { app } = require('electron')\napp.on('ready', () =\u003e {\n  // ...\n  if (process.env.NODE_ENV !== 'production') {\n    require('vue-devtools').install()\n  }\n  // ...\n})\n```\n\n### Uninstalling\n\ncalling `uninstall` in your `main.js`\n\n```js\nconst { app } = require('electron')\napp.on('ready', () =\u003e {\n  // ...\n  if (process.env.NODE_ENV !== 'production') {\n    require('vue-devtools').uninstall()\n  }\n  // ...\n})\n```\n\n## API\n\n### install()\n\nInstall Vue.js devtools in Electron devtools.\n\n### uninstall()\n\nUninstall Vue.js devtools in Electron devtools.\n\n## Contributing\n\n1. **Fork** it on GitHub!\n2. **Clone** the fork to your own machine.\n3. **Checkout** your feature branch: `git checkout -b my-awesome-feature`\n4. **Commit** your changes to your own branch: `git commit -am 'Add some feature'`\n5. **Push** your work back up to your fork: `git push -u origin my-awesome-feature`\n6. Submit a **Pull Request** so that we can review your changes.\n\n\u003e **NOTE**: Be sure to merge the latest from \"upstream\" before making a pull request!\n\n## License\n\n[MIT](https://github.com/vuejs/vue-devtools/blob/master/LICENSE) \u0026copy; [vuejs/vue-devtools](https://github.com/vuejs/vue-devtools)\n\n[MIT](LICENSE) \u0026copy; [汪磊](https://zce.me/)\n\n\n\n[travis-image]: https://img.shields.io/travis/zce/vue-devtools.svg\n[travis-url]: https://travis-ci.org/zce/vue-devtools\n[downloads-image]: https://img.shields.io/npm/dm/vue-devtools.svg\n[downloads-url]: https://npmjs.org/package/vue-devtools\n[version-image]: https://img.shields.io/npm/v/vue-devtools.svg\n[version-url]: https://npmjs.org/package/vue-devtools\n[license-image]: https://img.shields.io/npm/l/vue-devtools.svg\n[license-url]: https://github.com/zce/vue-devtools/blob/master/LICENSE\n[dependency-image]: https://img.shields.io/david/zce/vue-devtools.svg\n[dependency-url]: https://david-dm.org/zce/vue-devtools\n[devdependency-image]: https://img.shields.io/david/dev/zce/vue-devtools.svg\n[devdependency-url]: https://david-dm.org/zce/vue-devtools?type=dev\n[style-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg\n[style-url]: http://standardjs.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzce%2Fvue-devtools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzce%2Fvue-devtools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzce%2Fvue-devtools/lists"}