@vlalg-nimbus/github-stars-button

2.0.1 • Public • Published

github-stars-button


This is a Github Stars Web Component for Frontend Projects.

Installation

CDN
  https://unpkg.com/@vlalg-nimbus/github-stars-button/dist/github-stars-button.min.umd.js
To install
npm install @vlalg-nimbus/github-stars-button

# or

yarn add @vlalg-nimbus/github-stars-button

Usage

<head>
  <script type="module" src="https://unpkg.com/@vlalg-nimbus/github-stars-button/dist/github-stars-button.min.umd.js"></script>
</head>
<body>
  <github-stars-button
    data-repo-owner="repo owner"
    data-repo-name="repo name"
    data-show-count="true"
    data-go-repo="true"
  >
  </github-stars-button>

  <script>
    const githubStarsButton = document.querySelector('github-stars-button')

    githubStarsButton.addEventListener('webcomp-clicked', function(event) {
      const repoOwner = this.dataset.repoOwner
      const repoName = this.dataset.repoName
      const showCount = this.dataset.showCount

      console.log('Here', repoOwner, repoName, showCount)
      console.log('Custom event triggered:', event.detail.message)
    })
  </script>
</body>

Components list

The components that are part of this lib are:

Click on each one above to find out how to use it, properties, events, etc.

License

MIT

Package Sidebar

Install

npm i @vlalg-nimbus/github-stars-button

Weekly Downloads

308

Version

2.0.1

License

MIT

Unpacked Size

22.5 kB

Total Files

4

Last publish

Collaborators

  • tonhaosantos