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

devsyncui

v2.0.2

Published

Tailwind UI by DevSync

Readme

🚀 DevSyncUI — Tailwind Component Library

Welcome to DevSyncUI, a lightweight and modern UI library built with Tailwind CSS. All components are prefixed with .devsync- to avoid conflicts and are ready to drop into any project. This library is perfect for developers who want consistent, customizable, and clean UI without writing everything from scratch.


📌 Why DevSyncUI?

  • Fully Tailwind-based — no JS, no bloat
  • 🧱 Modular components — buttons, cards, modals, and more
  • 🛡️ Scoped utility classes — uses .devsync-* to prevent naming collisions
  • 🎯 Designed for production — responsive, accessible, and extensible

🛠️ Getting Started

This guide helps you install Tailwind, add DevSyncUI, and use components in your project — even if you're a beginner.


🔗 CDN Usage

Include DevSyncUI directly in your HTML:

<link href="https://cdn.jsdelivr.net/npm/devsyncui/dist/devsyncui.min.css" rel="stylesheet" />

Step 1: Create a Vite Project (Optional)

npm create vite@latest my-app -- --template react
cd my-app
npm install

Step 2: Install Tailwind CSS

npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p

⚠️ Note: If tailwind.config.js or postcss.config.js aren't created automatically, create them manually:

postcss.config.js (Recommended Production Version)

module.exports = {
  plugins: {
    tailwindcss: {},
    autoprefixer: {},
    ...(process.env.NODE_ENV === 'production' ? { cssnano: {} } : {})
  }
}

Step 3: Install DevSyncUI

npm install devsyncui

Step 4: Import Styles in your main CSS (e.g., src/index.css)

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Import DevSyncUI styles */
@import 'devsyncui/style';

Step 5: Register Plugin in tailwind.config.js ie your file should look like this:

⚠️ Note: If tailwind.config.js or postcss.config.js aren't created automatically, create them manually:

import devsyncPlugin from 'devsyncui/plugin';

export default {
  content: [
    "./index.html",
    "./src/**/*.{js,ts,jsx,tsx}",
    "./node_modules/devsyncui/**/*.{js,ts,jsx,tsx,css}",
    "./node_modules/devsyncui/dist/mini.{js,css}"

  ],
  theme: {
    extend: {},
  },
  plugins: [devsyncPlugin],
}

✅ This registers the DevSyncUI plugin with Tailwind CSS.


📚 Component Classes

View the full list of utility classes, variants, and themes on the official documentation site.


🔐 License & Usage Terms

See full terms.md


📬 Feedback & Contributions

Feel free to open GitHub Issues for bugs or suggestions. Contributions will be open soon.


🌐 Links

  • 📦 NPM Package: devsyncui
  • 🧠 Author: Soumay Sikchi
  • 🎨 Demo Website: Coming soon
  • 🧾 Documentation: devsyncui.dev

📄 License & Usage Terms

# License & Usage Terms

MIT License © 2025 Soumay Sikchi

---

## ✅ You May:

- Use DevSyncUI in personal and commercial projects
- Modify and extend the library in your own apps
- Share components in open-source projects with attribution

## ❌ You May Not:

- Re-upload the DevSyncUI library as a new npm package
- Rename the library and redistribute without consent
- Claim full authorship of this codebase without contributing

---

For collaboration, licensing deals, or enterprise distribution rights, please reach out via the official contact channels.