
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@comparaonline/comparanent-ui
Advanced tools

Comparanent-UI is available as an npm package
// with npm
npm install @comparaonline/comparanent-ui
// with yarn
yarn add @comparaonline/comparanent-ui
You need to import the component styles in your application. There are two options depending on your setup:
Option 1: If you need all Tailwind CSS helpers
Create a CSS file (e.g., styles.css) and import the full styles including Tailwind utilities:
@import '../../node_modules/@comparaonline/comparanent-ui/dist/index.css';
Option 2: If you already import Tailwind utilities in your project
If your styles.css already includes Tailwind utilities (e.g., @tailwind base; @tailwind components; @tailwind utilities;), use components.css instead to avoid style duplication and precedence issues:
@tailwind base;
@tailwind components;
@tailwind utilities;
@import '../../node_modules/@comparaonline/comparanent-ui/dist/components.css';
Then import this CSS file in your main application file (e.g., App.tsx or index.tsx):
import './styles.css';
Additionally, you need to configure Tailwind CSS to use the Comparanent-UI preset. In your tailwind.config.ts:
import TailwindCUI from '@comparaonline/comparanent-ui/dist/tailwind.config';
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{ts,tsx}', './node_modules/@comparaonline/comparanent-ui/dist/**/*.js'],
presets: [TailwindCUI],
} satisfies Config;
import React, { FC } from 'react';
import { Demo } from '@comparaonline/comparanent-ui';
export const MyComponent: FC<{}> = () => <Demo>Just a basic demo</Demo>;
Deployment is handled automatically based on semantic-release plugin running as a github action.
It is important to note that the feat and fix branches are the ones that generate new releases according to the semantic-release plugin rules.
Read the contributing guide to learn about our development process and how to build, test and commit your changes to Comparanent-UI.
If you have recently updated, please read the changelog for details of what has changed.
FAQs
Unknown package
We found that @comparaonline/comparanent-ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 12 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.