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

edvixo-ui

v1.0.11

Published

Reusable UI components for microfrontends

Readme

🙏 Namaste — Welcome to edvixo-ui

edvixo-ui is a reusable UI component library built for modern Next.js Microfrontend Applications.

It provides production-ready components powered by React + Tailwind CSS that can be shared across multiple apps, repositories, and deployments.


📦 NPM Package

👉 https://www.npmjs.com/package/edvixo-ui

Install:

npm install edvixo-ui

or

yarn add edvixo-ui

🚀 For Users (Using edvixo-ui in Your App)

1️⃣ Install Package

npm install edvixo-ui

2️⃣ Requirements

Your project must have:

  • ✅ Next.js 14+
  • ✅ React 18+
  • ✅ Tailwind CSS installed

3️⃣ Configure Next.js

next.config.ts

import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  transpilePackages: ["edvixo-ui"],
};

export default nextConfig;

Restart server after adding this.


4️⃣ Tailwind Setup (Important)

Make sure Tailwind scans the library components.

Tailwind v4 users:

app/globals.css

@import "tailwindcss";

/* allow Tailwind to detect classes from edvixo-ui */
@source "../node_modules/edvixo-ui/dist";

5️⃣ Use Components

import { StepsProduct } from "edvixo-ui";

export default function Page() {
  return <StepsProduct />;
}

✅ Styles apply automatically ✅ No CSS imports required


🧑‍💻 For Contributors

We welcome contributions 🙌


1️⃣ Clone Repository

git clone https://github.com/Abhimanyupayasi/edvixo-ui.git
cd edvixo-ui
npm install

2️⃣ Local Development Setup

Build library in watch mode:

npm run dev

This automatically rebuilds /dist when components change.


3️⃣ Link Package Locally (npm link)

Register package globally

Inside edvixo-ui:

npm link

Connect with Playground / App

Inside your testing app:

npm link edvixo-ui

Now the app uses your local package.

✅ Live development ✅ Instant testing


4️⃣ Develop Components

Create components inside:

src/components/

Export them from:

src/index.ts

Example:

export { default as StepsProduct } from "./components/StepsProduct";

5️⃣ Build Before Publishing

npm run build

Output will be generated in:

dist/

6️⃣ Publish New Version

Update version:

npm version patch

Publish:

npm publish --access public

🔁 Contribution Workflow

Create component
        ↓
Test using npm link
        ↓
Build package
        ↓
Increase version
        ↓
Publish to npm

🏗 Project Structure

edvixo-ui
│
├── src/
│   ├── components/
│   └── index.ts
│
├── dist/        (auto generated)
├── package.json
└── tsconfig.json

🎯 Goals of edvixo-ui

  • Shared UI across microfrontends
  • Reusable design system
  • Independent deployments
  • Clean Tailwind integration
  • Zero global CSS conflicts

🤝 Contributing Guidelines

Please:

  • Follow existing component patterns
  • Use Tailwind utility classes
  • Keep components reusable
  • Avoid app-specific logic
  • Test with npm link before publishing

🛠 Development Commands

| Command | Purpose | | ------------- | ---------------- | | npm run dev | Watch mode build | | npm run build | Production build | | npm publish | Publish package |


❤️ Made for Microfrontend Architecture

edvixo-ui is designed for:

  • Shell Applications
  • Independent Micro Apps
  • Multi-Repo Systems
  • Cloud Deployments

🙏 Thank You

Namaste and thank you for contributing to edvixo-ui.

Let’s build scalable UI systems together 🚀