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

emptybd-form

v1.1.8

Published

A reusable and dynamic form component for **React, Next.js and Raw HTML projects**, built with **TypeScript** and styled using **Tailwind CSS**. Designed for dashboards, admin panels, and partner integrations where forms are rendered dynamically using a u

Readme

📦 EmptyBD Form

A reusable and dynamic form component for React, Next.js and Raw HTML projects, built with TypeScript and styled using Tailwind CSS. Designed for dashboards, admin panels, and partner integrations where forms are rendered dynamically using a unique project key.


✨ Features

  • ✅ Works with React & Next.js
  • ✅ CDN support for normal HTML websites
  • ✅ Dynamic form rendering using key
  • ✅ Fully customizable styling
  • ✅ Secure partner-based usage system
  • ✅ Lightweight and easy to integrate

🔐 Support Policy

Official Support: Full support will be provided only to the registered user of the package.

Third-Party Support: Requests from anyone other than the registered user will not be entertained.

This ensures focused, secure, and professional assistance for verified users.


📥 Installation

Using npm:

npm install emptybd-form

Using yarn:

yarn add emptybd-form

🚀 React / Next.js Usage

import EmptyBDForm from 'emptybd-form';

const MyPage = () => {
  return (
    <EmptyBDForm
      dataKey="projectkey123"
      styles={{
        button: { backgroundColor: '#2563eb', color: '#fff' },
        label: { fontWeight: 'bold' }
      }}
    />
  );
};

export default MyPage;

🌐 Raw HTML / Vanilla JS Usage (Without React)

If your website is built with plain HTML, CSS, and JavaScript, you can still use EmptyBD Form via CDN.

✅ Example:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>EmptyBD Form Demo</title>
    <link href="https://cdn.jsdelivr.net/npm/tailwindcss@latest/dist/tailwind.min.css" rel="stylesheet">
</head>

<body>

    <div id="my-form"></div>

    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/bundle.js"></script>
    <script>
        window.renderEmptyBDForm("#my-form", "projectkey123", {
            button: {
                backgroundColor: "#000",
                color: "black",
                fontWeight: "bold",
                borderRadius: "2px"
            },
        });
    </script>


</body>

</html>

🧩 Function Signature (CDN Mode)

window.renderEmptyBDForm(selector, dataKey, styles);

| Parameter | Type | Description | | --------- | ----------------- | ----------------------------------------- | | selector | string | Target container selector (e.g. #my-form) | | dataKey | string | Unique project / partner key | | styles | object (optional) | Custom styling configuration |


🎨 Styling Options

styles?: {
  form?: CSSProperties;
  button?: CSSProperties;
  label?: CSSProperties;
  input?: {
    text?: CSSProperties;
    select?: CSSProperties;
  };
}

Example:

styles: {
  button: { backgroundColor: 'red', color: '#fff' },
  label: { fontSize: '14px' },
  input: {
    text: { border: '1px solid gray' }
  }
}

📦 Package Info

  • Name: emptybd-form
  • Version: 1.1.7
  • Framework: React + TypeScript
  • Styling: Tailwind + Inline CSS

🛡 Security Note

Each form is rendered based on a unique dataKey. Unauthorized keys will not render form data or functionality.


📞 Need Help?

Support is available only for registered package users. Please contact EmptyBD official support for assistance.


⭐ Summary

  • ✔ React & Next.js Ready
  • ✔ CDN Support for HTML sites
  • ✔ Secure key-based system
  • ✔ Highly customizable

Made with ❤️ by EmptyBD Team