Why is NexaUI distributed via CLI instead of a traditional npm package? #9
-
|
Most UI libraries like MUI or Ant Design are installed as dependencies, which makes them hard to customize and heavy on bundle size. NexaUI follows the "Registry Pattern." |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
NexaUI gives you full ownership of the code. When you run our CLI command, the raw code is injected directly into your components/ui folder. This means: 0% Bloat: You only keep the code you actually use. 100% Customization: You can change the Framer Motion physics, Tailwind classes, or logic directly in the file. Performance: No extra abstraction layers between your app and the components. |
Beta Was this translation helpful? Give feedback.
NexaUI gives you full ownership of the code. When you run our CLI command, the raw code is injected directly into your components/ui folder. This means:
0% Bloat: You only keep the code you actually use.
100% Customization: You can change the Framer Motion physics, Tailwind classes, or logic directly in the file.
Performance: No extra abstraction layers between your app and the components.