{"id":21289719,"url":"https://github.com/wzulfikar/vue-github-commits","last_synced_at":"2026-05-10T14:49:16.205Z","repository":{"id":82238875,"uuid":"84509381","full_name":"wzulfikar/vue-github-commits","owner":"wzulfikar","description":"Vue component for github commits: https://wzulfikar.github.io/vue-github-commits/","archived":false,"fork":false,"pushed_at":"2017-03-11T19:17:40.000Z","size":90,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-20T07:41:11.679Z","etag":null,"topics":["commits","github","vue"],"latest_commit_sha":null,"homepage":"https://wzulfikar.github.io/vue-github-commits/","language":"JavaScript","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/wzulfikar.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":"2017-03-10T02:14:18.000Z","updated_at":"2017-03-30T01:26:16.000Z","dependencies_parsed_at":"2023-03-12T15:12:27.691Z","dependency_job_id":null,"html_url":"https://github.com/wzulfikar/vue-github-commits","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/wzulfikar/vue-github-commits","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wzulfikar%2Fvue-github-commits","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wzulfikar%2Fvue-github-commits/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wzulfikar%2Fvue-github-commits/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wzulfikar%2Fvue-github-commits/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wzulfikar","download_url":"https://codeload.github.com/wzulfikar/vue-github-commits/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wzulfikar%2Fvue-github-commits/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32860226,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"ssl_error","status_checked_at":"2026-05-10T13:40:02.145Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["commits","github","vue"],"created_at":"2024-11-21T12:42:48.945Z","updated_at":"2026-05-10T14:49:16.185Z","avatar_url":"https://github.com/wzulfikar.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vue-github-commits\n\n[![npm](https://img.shields.io/npm/v/vue-github-commits.svg) ![npm](https://img.shields.io/npm/dm/vue-github-commits.svg)](https://www.npmjs.com/package/vue-github-commits)\n[![vue2](https://img.shields.io/badge/vue-2.x-brightgreen.svg)](https://vuejs.org/)\n\nA Vue.js Plugin\n\n## Table of contents\n\n- [Generator](#generator)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Example](#example)\n\n# Generator\nVisit https://wzulfikar.github.io/vue-github-commits\n\n# Installation\n\n```\nnpm install --save vue-github-commits\n```\n\n## Default import\n\nInstall all the components:\n\n```javascript\nimport Vue from 'vue'\nimport VueGithubCommits from 'vue-github-commits'\n\nVue.use(VueGithubCommits)\n```\n\nUse specific components:\n\n```javascript\nimport Vue from 'vue'\nimport { Test } from 'vue-github-commits'\n\nVue.component('test', Test)\n```\n\n**⚠️ A css file is included when importing the package. You may have to setup your bundler to embed the css in your page.**\n\n## Distribution import\n\nInstall all the components:\n\n```javascript\nimport 'vue-github-commits/dist/vue-github-commits.css'\nimport VueGithubCommits from 'vue-github-commits/dist/vue-github-commits.common'\n\nVue.use(VueGithubCommits)\n```\n\nUse specific components:\n\n```javascript\nimport 'vue-github-commits/dist/vue-github-commits.css'\nimport { Test } from 'vue-github-commits/dist/vue-github-commits.common'\n\nVue.component('test', Test)\n```\n\n**⚠️ You may have to setup your bundler to embed the css file in your page.**\n\n## Browser\n\n```html\n\u003clink rel=\"stylesheet\" href=\"vue-github-commits/dist/vue-github-commits.css\"/\u003e\n\n\u003cscript src=\"vue.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"vue-github-commits/dist/vue-github-commits.browser.js\"\u003e\u003c/script\u003e\n```\n\nThe plugin should be auto-installed. If not, you can install it manually with the instructions below.\n\nInstall all the components:\n\n```javascript\nVue.use(VueGithubCommits)\n```\n\nUse specific components:\n\n```javascript\nVue.component('test', VueGithubCommits.Test)\n```\n\n## Source import\n\nInstall all the components:\n\n```javascript\nimport Vue from 'vue'\nimport VueGithubCommits from 'vue-github-commits/src'\n\nVue.use(VueGithubCommits)\n```\n\nUse specific components:\n\n```javascript\nimport Vue from 'vue'\nimport { Test } from 'vue-github-commits/src'\n\nVue.component('test', Test)\n```\n\n**⚠️ You need to configure your bundler to compile `.vue` files.** More info [in the official documentation](https://vuejs.org/v2/guide/single-file-components.html).\n\n# Usage\n\n\u003e TODO\n\n# Example\n\n\u003e TODO\n\n---\n\n# Plugin Development\n\n## Installation\n\nThe first time you create or clone your plugin, you need to install the default dependencies:\n\n```\nnpm install\n```\n\n## Watch and compile\n\nThis will run webpack in watching mode and output the compiled files in the `dist` folder.\n\n```\nnpm run dev\n```\n\n## Use it in another project\n\nWhile developping, you can follow the install instructions of your plugin and link it into the project that uses it.\n\nIn the plugin folder:\n\n```\nnpm link\n```\n\nIn the other project folder:\n\n```\nnpm link vue-github-commits\n```\n\nThis will install it in the dependencies as a symlink, so that it gets any modifications made to the plugin.\n\n## Publish to npm\n\nYou may have to login to npm before, with `npm adduser`. The plugin will be built in production mode before getting published on npm.\n\n```\nnpm publish\n```\n\n## Manual build\n\nThis will build the plugin into the `dist` folder in production mode.\n\n```\nnpm run build\n```\n\n---\n\n## Screenshot\n![](vue-github-commits-demo-screenshot.jpg)\n\n## License\n\n[MIT](http://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwzulfikar%2Fvue-github-commits","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwzulfikar%2Fvue-github-commits","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwzulfikar%2Fvue-github-commits/lists"}