https://github.com/datejer/vercel-badge
Simple serverless service for embedding a Vercel deployment badge.
https://github.com/datejer/vercel-badge
badge nodejs serverless shieldsio vercel
Last synced: 3 months ago
JSON representation
Simple serverless service for embedding a Vercel deployment badge.
- Host: GitHub
- URL: https://github.com/datejer/vercel-badge
- Owner: datejer
- License: mit
- Created: 2020-11-21T22:28:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-30T21:47:02.000Z (over 3 years ago)
- Last Synced: 2025-03-23T04:51:13.955Z (3 months ago)
- Topics: badge, nodejs, serverless, shieldsio, vercel
- Language: TypeScript
- Homepage: https://vercelbadge.vercel.app
- Size: 21.5 KB
- Stars: 63
- Watchers: 1
- Forks: 26
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# vercel-badge

Simple serverless service/utility for embedding a Vercel deployment badge in your public github repository or on your website.
## Usage
```

```Replace `[owner]` with the username of the repo owner, or the organization name under which the repository is located.
Replace `[repo]` with the repository name.
(optional) Add the `?style=` parameter to change the visual badge style.
| Parameter | Types | Description | Example |
| --------- | ------------------------------------------------------------------------------- | --------------------------------------- | ----------------------------------------------------------------------------- |
| style | Default: `flat`
Available: `flat`, `flat-square`, `for-the-badge`, `plastic` | Select the visual style for your badge. | `https://vercelbadge.vercel.app/api/datejer/vercel-badge?style=for-the-badge` |## Examples
These are all of the possible Vercel deployment statuses. (`flat` style)



---
`flat-square` style: 
`for-the-badge` style: 
`plastic` style: 
---
## Ratelimits
This project uses the GitHub API with an OAuth app's ID and Secret to authenticate requests in order to up the ratelimit to 5k requests per hour. The publicly available deployment uses my private OAuth app credentials, so it's highly advised to deploy your own Vercel instance with your own credentials to avoid ratelimiting, especially with bigger projects.
You can check the current GitHub API ratelimit by GETing /api/ratelimit
```
GET https://vercelbadge.vercel.app/api/ratelimit
```## Deploying
[](https://vercel.com/new/git/external?repository-url=https%3A%2F%2Fgithub.com%2Fdatejer%2Fvercel-badge%2Ftree%2Fmaster)
You can deploy your own Vercel instance of this project. In order to do that you must create a GitHub OAuth app and pass the Client ID and Client Secret as two environment variables. (respectively `ID` and `SECRET`)
## Contributing
Please refer to [CONTRIBUTING.md](/CONTRIBUTING.md)