npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

render-status-badge

v1.0.1

Published

[![npm version](https://img.shields.io/npm/v/render-status-badge)](https://www.npmjs.com/package/render-status-badge) [![GitHub License](https://img.shields.io/github/license/yourusername/render-status-badge)](https://github.com/nia-cloud-official/render

Readme

Render Status Badge 🛠️🟢

npm version GitHub License Render Status

A dynamic status badge generator for Render.com deployments. Automatically displays your service's deploy status (Live, Failed, Deploying) in your README or docs using Shields.io and Render's API.

Example Badges Example Badges Example Badges

Features ✨

  • Real-time Status: Automatically updates based on Render's deploy status.
  • Customizable: Supports Shields.io styles (flat, plastic, etc.).
  • Multi-Project Ready: Use across multiple repos/services via .env config.
  • CI/CD Integration: Built-in GitHub Actions workflow for auto-updates.
  • Open Source: MIT licensed — modify and distribute freely!

Installation 📦

npm install render-status-badge
# or
yarn add render-status-badge

Usage 🚀

1. Configure Environment Variables

Create a .env file in your project root:

RENDER_API_KEY="your_render_api_key_here"
RENDER_SERVICE_ID="your_service_id_here"

2. Generate the Badge URL

Run the script to get your dynamic badge URL:

npx render-status-badge
# Output: https://img.shields.io/badge/Render-Live-brightgreen?logo=render&style=for-the-badge

3. Add to README.md

Paste the generated URL into your markdown:

![Render Status](YOUR_BADGE_URL_HERE)

GitHub Actions Automation 🤖

Add this workflow (.github/workflows/update-badge.yml) to auto-update your badge:

name: Update Render Status Badge
on:
  schedule:
    - cron: '*/5 * * * *' # Runs every 5 minutes
  workflow_dispatch:

jobs:
  update-badge:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Generate Badge
        env:
          RENDER_API_KEY: ${{ secrets.RENDER_API_KEY }}
          RENDER_SERVICE_ID: ${{ secrets.RENDER_SERVICE_ID }}
        run: npx render-status-badge >> badge-url.txt
      - name: Update README
        run: |
          sed -i "s|<!-- RENDER_BADGE -->.*|![Render Status]($(cat badge-url.txt))|" README.md
          git commit -am "Update Render status badge" && git push

Configuration ⚙️

| Environment Variable | Required | Description | |-----------------------|----------|--------------------------------------| | RENDER_API_KEY | Yes | Render API key (get it here) | | RENDER_SERVICE_ID | Yes | Your Render service ID |

Contributing 🤝

Contributions are welcome! Here’s how:

  1. Report Issues: Open a GitHub issue for bugs or feature requests.
  2. Suggest Features: Propose improvements via Discussions.
  3. Submit PRs: Fork the repo, create a branch, and open a PR.

License 📄

MIT License — see LICENSE for details.


Made by Milton Vafana
Credits to Render and Shields.io