primevue VS primereact

Compare primevue vs primereact and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
primevue primereact
91 78
7,665 5,776
5.4% 3.3%
9.9 10.0
7 days ago 4 days ago
CSS CSS
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

primevue

Posts with mentions or reviews of primevue. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-09.
  • PrimeVue: The Next-Gen UI Suite for Vue.js
    1 project | news.ycombinator.com | 11 Apr 2024
  • Build your own Vue UI library with Unstyled PrimeVue Core and Tailwind CSS
    1 project | dev.to | 7 Jan 2024
    PrimeVue unstyled core and Tailwind CSS would be a perfect toolset if you require to build a custom UI library. The main idea is to create your UI component by wrapping a PrimeVue component, pass your props as fall through and configure the pass-through Tailwind preset locally instead of a global configuration.
  • A simple Vue form validation composable with Zod
    6 projects | dev.to | 9 Dec 2023
    Here is a Stackblitz showcasing the useValidation composable in action https://stackblitz.com/edit/vue-use-validation-composable?file=src%2FApp.vue. The form is using components from PrimeVue and includes fields for a user's profile information, featuring nested address details.
  • Ask HN: What framework/tools to use to build front end in 2023?
    6 projects | news.ycombinator.com | 11 Nov 2023
    I'm for Vue/Nuxt. While reading React code is fine, I found it easy to shoot myself in the foot (causing circular effects or getting no reactivity) in a way Vue didn't. Vue feels more explicit. I like React's TSX for embedding HTML, but Vue's splitting of model and view appeals to me. I'm torn on that one.

    Vue's ecosystem isn't as big, but it's an established framework. Both React and Vue feel easier to work with than Angular. RxJS is really cool, but also very comprehensive, making it difficult to keep the entire API in mind. At least for me, who only use it casually (used to use it more while at Google.) And on top of that, I have to know the Angular API. Angular used to be great for Material Design, but I nowadays there are MD packages for all systems.

    Nuxt is for Vue what Next is for React: SSR and SSG. It adds auto-imports, which is nice. At this point, I see no reason to use Vue alone, since there's always something that can be pre-rendered. Perhaps the frontpage, or help pages. Since Vue itself provides entrypoints for SSR, Nuxt is more of a file-structure based router that just simplifies things. The documentation is a bit sparse on e.g. the difference between a plugin and a module, and I usually resort to navigating their source to understand things. That might not be everyone's cup of tea.

    If what you're writing is a web app, there is also Quasar, built on top of Vue. Similar to Nuxt in that it ties in directory structure, build system and MVC framework. It is also a Material Design UI widget library. Their selling point is that you can build mobile apps, and web apps with the same library. I.e. like React Native. I felt it strays too far away from the core simplicity of Vue, unlike Nuxt, but it's no doubt a very capable framework.

    Finally, I'm currently using PrimeVue as the UI widget/theming library on top of Vue. It's okay. :\ Switched to it when the Vue Bootstrap project decided to to support Vue 3 (or whatever the situation was.) I haven't come across anything that's actively broken or missing. The companion library PrimeFlex provides layout CSS. Annoyingly, they've decided to close GitHub FRs, and some (far from all) bugs, and just keep track of them internally. Makes it more dificult to communicate, but I don't know their reasoning behind it (they didn't respond when I asked.)

    * https://vuejs.org/

    * https://nuxt.com/

    * https://vitejs.dev/

    * https://primevue.org/

    * https://primeflex.org/

    * https://quasar.dev/

  • A design system for the federal government
    12 projects | news.ycombinator.com | 10 Sep 2023
  • 90+ Vue UI Components Styled with Tailwind CSS
    1 project | dev.to | 31 Aug 2023
    PrimeVue has recently announced the new Unstyled mode that removes the default styling and exposes the component internals via pass through props API. With the unstyled mode, components do the hard work by providing the feature set and accessibility out of the box but leaves out the styling to the user.
  • Should I use Nuxt to build my potentially Amazon like complex web app.
    5 projects | /r/Nuxt | 16 Jun 2023
    - Primevue (https://primevue.org/) is also pretty good, and is getting an unstyled tailwind-compat version pretty soon
  • Making own nuxt-like framework with bun
    3 projects | dev.to | 10 Jun 2023
    Till buchta v0.6 is out, the Vue plugin has a temporary solution on how to use Vue plugins. Currently we will focus on 3rd party vue components primevue
  • Create a Shopping Cart with Vuejs and Pinia
    6 projects | dev.to | 19 Apr 2023
    Primevue is a big collection of Vuejs UI Components with top-notch quality to help you implement all your UI requirements in style.
  • Mobile UI library
    2 projects | /r/Nuxt | 25 Mar 2023
    I use PrimeVue

primereact

Posts with mentions or reviews of primereact. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-29.
  • A brief history of web development. And why your framework doesn't matter
    4 projects | news.ycombinator.com | 29 Apr 2024
    > It’s important to be aware of what you are getting if you go with React, and what you are getting is a far cry from what a framework would offer, with all the corresponding pros and cons.

    Would you like to elaborate on that?

    In my experience, with something as great, size/ecosystem-wise as React, there will almost always be at least one "mainstream" package for whatever you might want to do with it, that integrates pretty well. Where a lot of things might come out of the box with a framework, with a library I often find myself just needing to install the "right" package, and from there it's pretty much the same.

    For example, using https://angular.io/guide/i18n-overview or installing and using https://react.i18next.com/

    Or something like https://angular.io/guide/form-validation out of the box, vs installing and using https://formik.org/

    Or perhaps https://angular.io/guide/router vs https://reactrouter.com/en/main

    Even adding something that's not there out of the box is pretty much the same, like https://primeng.org/ or https://primereact.org/

    React will typically have more fragmentation and therefore also choice, but I don't see those two experiences as that different. Updates and version management/supply chain will inevitably be more of a mess with the library, admittedly.

    Now, projects like Next https://nextjs.org/ exist and add what some might regard as the missing pieces and work well if you want something opinionated and with lots of features out of the box, but a lot of those features (like SSR) are actually pretty advanced and not always even necessary.

  • React Component Libraries
    13 projects | dev.to | 13 Mar 2024
    Official Website: https://primereact.org/
  • A design system for the federal government
    12 projects | news.ycombinator.com | 10 Sep 2023
  • Build a Blog Website with ReactJs-PrimeReact and Hygraph Headless CMS
    1 project | dev.to | 7 Aug 2023
    2️⃣ - Original Design: A remarkable feature of Cosmedic Istanbul is that it uses its own original design without being dependent on paid templates. In this way, the look of the website is completely unique to the company and the styling process is greatly simplified with the contributions of open source projects such as PrimeReact and PrimeReact Designer. Thus, a professional look is achieved without having to write pages of CSS code.
  • Is Chakra-UI still in use today? Or are there better libraries available now?
    2 projects | /r/reactjs | 14 Jul 2023
    I've been using https://primereact.org and so far very impressed by their components and the documentation.
  • Web with pre-made components?
    2 projects | /r/react | 20 May 2023
    This kind of limitation and my need of ready-to-use UI component drove me away from MUI till I found the answer, PrimeReact.
  • Which React UI library is best for data dense enterprise application?
    1 project | /r/reactjs | 10 Apr 2023
    PrimeReact has numerous form and data components for complex requirements. Greetings from PrimeTek.
  • What component libraries do you use?
    7 projects | /r/reactjs | 8 Apr 2023
    Been using PrimeReact with my latest project and I am really happy with the outcome. Lot's of components, well written documentation, and there's even this CSS library that comes with it called PrimeFlex
  • Is anyone else using Reddit more than Stack Overflow for posting questions?
    1 project | /r/webdev | 29 Mar 2023
    Tbh, prime-react comes to mind, the component code examples are a mess. I recently used some UI components and as much as I liked them, that was SUCH a peeve to deal with.
  • Best UI library as an alternative to Fluent UI?
    5 projects | /r/reactjs | 22 Mar 2023
    Check out PrimeReact. PrimeReact also has a FluentUI theme. Note: I work at PrimeTek.

What are some alternatives?

When comparing primevue and primereact you can also consider the following projects:

Quasar Framework - Quasar Framework - Build high-performance VueJS user interfaces in record time

Material UI - Ready-to-use foundational React components, free forever. It includes Material UI, which implements Google's Material Design.

vuetify - πŸ‰ Vue Component Framework

chakra-ui - ⚑️ Simple, Modular & Accessible UI Components for your React Applications

bootstrap-vue - BootstrapVue provides one of the most comprehensive implementations of Bootstrap v4 for Vue.js. With extensive and automated WAI-ARIA accessibility markup.

Tailwind CSS - A utility-first CSS framework for rapid UI development.

sakai-vue - Free Vue Admin Template by PrimeVue

antd - An enterprise-class UI design language and React UI library

ant-design-vue - 🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜

mantine - A fully featured React components library

naive-ui - A Vue 3 Component Library. Fairly Complete. Theme Customizable. Uses TypeScript. Fast.

react-table - πŸ€– Headless UI for building powerful tables & datagrids for TS/JS - React-Table, Vue-Table, Solid-Table, Svelte-Table