
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
Dyvix is an open source, modern, config-driven, animated component UI library. Beautiful by default, customizable by design.
Singularity, Industrial, Ember, Frost, Blade, Neon, Aurora, Sunset, Ocean, Forest, Midnight, Crimson, Obsidian (Component coverage varies between releases).fade, bubble, zoom, unfold, glitch, pulse, aurora, drop, flip, glide, drift, float, swing.Unlike traditional component libraries, Dyvix focuses on config-driven workflows where they provide the most value, with optional animation and theme systems that can be customized without rewriting component logic.
npm i dyvix-ui
import { Modal } from 'dyvix-ui';
function ModalExample() {
return (
<Modal
title="Register"
type="form"
animation="bubble" // bubble | fade | zoom | unfold | glitch | pulse | aurora | drop | flip | glide | drift | float | swing
Id="register-modal"
className="modal"
theme="Singularity" // Singularity | Industrial | Ember | Frost | Blade | Neon | Aurora | Sunset | Ocean | Forest | Midnight | Crimson | Obsidian
elements={[
{
type: 'text',
placeholder: ['First Name', 'Last Name'],
id: 'name',
name: ['firstName', 'lastName'],
amount: 2
},
{
type: 'email',
placeholder: 'Email',
validation: ['email'],
id: 'email',
name: 'email',
amount: 1
},
{
type: 'password',
placeholder: 'Password',
validation: ['password'],
id: 'password',
name: 'password',
amount: 1
}
]}
onSubmit={(data) => console.log(data)}
/>
);
}
import { DyvixToastContainer, dyvixToast } from 'dyvix-ui';
function ToastExample() {
function notify() {
dyvixToast.success('This is a new message');
}
return (
<>
<DyvixToastContainer
position="top-right"
duration={5000}
animation="fade"
/>
<button onClick={notify}>Notify</button>
</>
);
}
Config-driven table mode includes an exclusive realtime multi-column sorting.
import {
DyvixTable,
DyvixTableHeader,
DyvixTableBody,
DyvixTableRow,
DyvixTableHead,
DyvixTableCell
} from 'dyvix-ui';
function Dual_API_Table_Example() {
return (
<>
{/* Config-driven Mode */}
<DyvixTable
theme="Crimson"
columns={[
{ key: 'name', label: 'Name', sortable: true },
{ key: 'type', label: 'Type' }
]}
data={[
{ name: 'Lion', type: 'Wild' },
{ name: 'Hawk', type: 'Bird' }
]}
/>
{/* Composable Mode */}
<DyvixTable>
<DyvixTableHeader>
<DyvixTableRow>
<DyvixTableHead>Name</DyvixTableHead>
<DyvixTableHead>Type</DyvixTableHead>
</DyvixTableRow>
</DyvixTableHeader>
<DyvixTableBody>
<DyvixTableRow>
<DyvixTableCell>Lion</DyvixTableCell>
<DyvixTableCell>Wild</DyvixTableCell>
</DyvixTableRow>
</DyvixTableBody>
</DyvixTable>
</>
);
}
Full Documentation & Live Demos: dyvix-ui.vercel.app
Feel free to open meaningful issues and PRs. Check our contributing guide and open contribution trackers:
FAQs
Dyvix is an open source, modern, config-driven, animated component UI library. Beautiful by default, customizable by design.
The npm package dyvix-ui receives a total of 295 weekly downloads. As such, dyvix-ui popularity was classified as not popular.
We found that dyvix-ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.

Security News
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.