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

@mdkva/tasbihkit

v1.2.3

Published

MDKVA TasbihKit provides clean, structured, and developer-friendly access to commonly used dhikr, tasbih counts, and remembrance phrases — ideal for spiritual apps, Islamic tools, and automation projects.

Readme

MDKVA TasbihKit is a lightweight, browser-ready Tasbih loader designed for Islamic web and mobile applications. It provides a clean and unified API for retrieving Tasbih entries from any category (general, day-and-night, magic-breaker, and post-prayer), perfect for apps, educational tools, dhikr trackers, and spiritual platforms.


✨ Features

  • TasbihKit.loadAll(category) — Load the full Tasbih dataset for a category (e.g., "general", "day-and-night").
  • TasbihKit.searchById(category, id) — Retrieve a Tasbih entry by its unique ID (string-safe; supports "1", "2", etc.).
  • TasbihKit.searchByLabel(category, keyword) — Find Tasbih entries by Arabic label.
  • TasbihKit.searchByTranslation(category, translation) — Search Tasbih English translations for any translation.
  • Works with any category, as long as a JSON file exists.
  • Simple, predictable JSON structure: id, label, translation, count.
  • Zero dependencies, fully ES module compatible.

📦 Installation

TasbihKit is browser-first. You can load it via file path, CDN, or module bundlers.

CDN import (recommended):

<script type="module">
  import { TasbihKit } from "https://cdn.jsdelivr.net/npm/@mdkva/tasbihkit/tasbihkit.js";
</script>

🌐 Usage

TasbihKit.loadAll(category)

<div id="mdkva-tasbihkit"></div>

<script type="module">

import { TasbihKit } from "https://cdn.jsdelivr.net/npm/@mdkva/tasbihkit/tasbihkit.js";

  async function loadAll() {
    try {
      // Load all Tasbih entries in the "general" category
      const allTasbih = await TasbihKit.loadAll("general");

      console.log("load:", allTasbih);

      const html = allTasbih.map(t => `
        <div class="tasbih-block">
          <h3>${t.id}: ${t.label}</h3>
          <p><strong>Translation:</strong> ${t.translation}</p>
          <p><strong>Count:</strong> ${t.count}</p>
          <hr>
        </div>
      `).join('');

      document.getElementById("mdkva-tasbihkit").innerHTML = html;

    } catch (err) {
      console.error("Error in load():", err);
      document.getElementById("mdkva-tasbihkit").innerText = err.message;
    }
  }

  loadAll();
</script>

TasbihKit.searchById(category, id)

<div id="mdkva-tasbihkit"></div>

<script type="module">

import { TasbihKit } from "https://cdn.jsdelivr.net/npm/@mdkva/tasbihkit/tasbihkit.js";

  async function searchById() {
    try {
      const tasbih = await TasbihKit.searchById("general", "1");

      document.getElementById("mdkva-tasbihkit").innerHTML = `
        <h2>${tasbih.id}: ${tasbih.label}</h2>
        <p><strong>Translation:</strong> ${tasbih.translation}</p>
        <p><strong>Count:</strong> ${tasbih.count}</p>
      `;
    } catch (err) {
      console.error(err);
      document.getElementById("mdkva-tasbihkit").innerText = err.message;
    }
  }

  searchById();
</script>

TasbihKit.searchByLabel(category, keyword)

<div id="mdkva-tasbihkit"></div>

<script type="module">

import { TasbihKit } from "https://cdn.jsdelivr.net/npm/@mdkva/tasbihkit/tasbihkit.js";

  async function searchByLabel() {
    try {
      // Search for Tasbih entries containing "سبحان" in the Arabic label
      const results = await TasbihKit.searchByLabel("general", "سبحان");

      console.log("searchByLabel:", results);

      if (results.length === 0) {
        document.getElementById("mdkva-tasbihkit").innerText = "No Tasbih found.";
        return;
      }

      const html = results.map(t => `
        <div class="tasbih-block">
          <h3>${t.id}: ${t.label}</h3>
          <p><strong>Translation:</strong> ${t.translation}</p>
          <p><strong>Count:</strong> ${t.count}</p>
          <hr>
        </div>
      `).join('');

      document.getElementById("mdkva-tasbihkit").innerHTML = html;

    } catch (err) {
      console.error("Error in searchByLabel():", err);
      document.getElementById("mdkva-tasbihkit").innerText = err.message;
    }
  }

  searchByLabel();
</script>

TasbihKit.searchByTranslation(category, translation)

<div id="mdkva-tasbihkit"></div>

<script type="module">

import { TasbihKit } from "https://cdn.jsdelivr.net/npm/@mdkva/tasbihkit/tasbihkit.js";

  async function searchByTranslation() {
    try {
      // Search for the translation "Glory" in English translations
      const results = await TasbihKit.searchByTranslation("general", "Glory");

      console.log("search:", results);

      if (results.length === 0) {
        document.getElementById("mdkva-tasbihkit").innerText = "No matches found.";
        return;
      }

      const html = results.map(t => `
        <div class="tasbih-block">
          <h3>${t.id}: ${t.label}</h3>
          <p><strong>Translation:</strong> ${t.translation}</p>
          <p><strong>Count:</strong> ${t.count}</p>
          <hr>
        </div>
      `).join('');

      document.getElementById("mdkva-tasbihkit").innerHTML = html;

    } catch (err) {
      console.error("Error in search():", err);
      document.getElementById("mdkva-tasbihkit").innerText = err.message;
    }
  }

  searchByTranslation();
</script>

Contributions

This project is open source and contributions are welcome!


Links


📄 License

MIT License