React vs. WordPress

Overview
ProductRatingMost Used ByProduct SummaryStarting Price
React
Score 9.3 out of 10
N/A
React is a JavaScript library for building user interfaces. React enables users to create interactive UIs. Design simple views for each state in an application, and React will update and render just the right components when data changes. React is available free and open source under the MIT license.N/A
WordPress
Score 8.6 out of 10
N/A
Wordpress is an open-source publishing platform popular with bloggers, and a content management system, known for its simplicity and modifiability. Websites may host their own blogging communities, controlling and moderating content from a single dashboard.
$3
per month 6 GB storage
Pricing
ReactWordPress
Editions & Modules
No answers on this topic
Personal
$4
per month 6 GB storage
Premium
$8
per month 13 GB storage
Business
$25
per month 50 GB storage
Commerce
$45
per month 50 GB storage
Enterprise
Contact for pricing
Offerings
Pricing Offerings
ReactWordPress
Free Trial
NoNo
Free/Freemium Version
NoNo
Premium Consulting/Integration Services
NoNo
Entry-level Setup FeeNo setup feeNo setup fee
Additional DetailsPricing for Business and Commerce plans vary on number of GB.
More Pricing Information
Community Pulse
ReactWordPress
Features
ReactWordPress
Security
Comparison of Security features of Product A and Product B
React
-
Ratings
WordPress
8.8
131 Ratings
9% above category average
Role-based user permissions00 Ratings8.8131 Ratings
Platform & Infrastructure
Comparison of Platform & Infrastructure features of Product A and Product B
React
-
Ratings
WordPress
8.7
107 Ratings
14% above category average
API00 Ratings8.997 Ratings
Internationalization / multi-language00 Ratings8.481 Ratings
Web Content Creation
Comparison of Web Content Creation features of Product A and Product B
React
-
Ratings
WordPress
8.3
137 Ratings
7% above category average
WYSIWYG editor00 Ratings8.7124 Ratings
Code quality / cleanliness00 Ratings7.0123 Ratings
Admin section00 Ratings8.8135 Ratings
Page templates00 Ratings9.0132 Ratings
Library of website themes00 Ratings6.5134 Ratings
Mobile optimization / responsive design00 Ratings9.0133 Ratings
Publishing workflow00 Ratings8.7128 Ratings
Form generator00 Ratings9.0106 Ratings
Web Content Management
Comparison of Web Content Management features of Product A and Product B
React
-
Ratings
WordPress
8.6
135 Ratings
16% above category average
Content taxonomy00 Ratings8.9115 Ratings
SEO support00 Ratings8.7121 Ratings
Bulk management00 Ratings7.5102 Ratings
Availability / breadth of extensions00 Ratings8.7124 Ratings
Community / comment management00 Ratings9.2124 Ratings
Best Alternatives
ReactWordPress
Small Businesses

No answers on this topic

ManageWP
ManageWP
Score 10.0 out of 10
Medium-sized Companies

No answers on this topic

RWS Tridion Sites
RWS Tridion Sites
Score 9.0 out of 10
Enterprises

No answers on this topic

RWS Tridion Sites
RWS Tridion Sites
Score 9.0 out of 10
All AlternativesView all alternativesView all alternatives
User Ratings
ReactWordPress
Likelihood to Recommend
10.0
(14 ratings)
8.5
(173 ratings)
Likelihood to Renew
-
(0 ratings)
10.0
(37 ratings)
Usability
10.0
(3 ratings)
8.7
(20 ratings)
Availability
-
(0 ratings)
9.5
(3 ratings)
Performance
-
(0 ratings)
8.6
(2 ratings)
Support Rating
10.0
(3 ratings)
10.0
(11 ratings)
In-Person Training
-
(0 ratings)
7.0
(1 ratings)
Online Training
-
(0 ratings)
10.0
(1 ratings)
Implementation Rating
-
(0 ratings)
9.0
(10 ratings)
Configurability
-
(0 ratings)
10.0
(1 ratings)
Ease of integration
-
(0 ratings)
8.0
(1 ratings)
Product Scalability
-
(0 ratings)
10.0
(1 ratings)
Vendor post-sale
-
(0 ratings)
10.0
(1 ratings)
Vendor pre-sale
-
(0 ratings)
10.0
(1 ratings)
User Testimonials
ReactWordPress
Likelihood to Recommend
Open Source
React is a JavaScript user interface construction library that works well for:
  • Developing web apps with dynamic and complicated user interfaces.
  • creating reusable UI elements that may be used in other applications.
  • creating single-page applications with dynamic content updates that don't require a page reload.
  • The Virtual DOM's effective updating mechanism allows it to handle large volumes of data updates.
React, on the other hand, might be less suitable for:
  • Websites that are simple, stagnant, and have no interaction. Other libraries or simple HTML, CSS, and JavaScript may be a better fit in such circumstances.
  • Web sockets may be a better choice for applications that need real-time updates, such as chat or gaming apps.
  • When creating mobile apps, React Native is a better option.
  • Server side rendering only, as React is designed to run on the client side.
Read full review
Automattic
Wordpress is a great solution for a website of nearly any type. It may not be as suitable if a fully custom solution or app is needed, and it does have some limitations when it comes to connecting it to external products (especially if the product doesn't have any support from a native system), and it does require a lot of testing. Multiple plugins in one install are common but also increase the risk of conflicts, and when those do occur, it can be exceptionally time-consuming and tedious to identify what is causing the issue. As third parties create many plugins, you're also at risk with each potential security breach, which needs to be kept in mind. I would be cautious to use WordPress to store any sort of sensitive PPI. That said, it's a wonderful, easily customizable solution for many, many different types of websites and can allow even inexperienced client users with low-tech knowledge to update basics.
Read full review
Pros
Open Source
  • React is fantastic for building performant user interfaces. Our web app is snappy and great for our customers.
  • React has the philosophy of doing one thing and doing it well which is the view layer of the application. This makes it incredibly intuitive and flexible for developers to use.
  • React has lead the way in being able to write modular and structured code. It is a drastic improvement since the days of spaghetti jQuery code.
  • React has an unmatched community. The amount of tools and libraries available is fantastic, and there plenty of solutions available online for common problems.
Read full review
Automattic
  • Easy to use User Interface
  • Coding / Plugin Implementation is awesome
  • There's always a solution available for the platform
  • Security is easy to use and robust
  • Implementation with 3rd party platforms, such as Google's variety of tools
  • Can download and host on your own server or use their hosted servers
Read full review
Cons
Open Source
  • Debugging React is challenging. Bugs in react code generate stack traces internal to React and it is often totally unclear how it relates to the code you actually wrote.
  • Relating your React elements to corresponding DOM elements is difficult. The intentional separation of virtual and actual DOM also makes it difficult to map the elements to the structures in the DOM. This is partially ameliorated by the use of the React dev tool, which provides a DOM-like view of the React elements, but the tool still does not provide a direct correspondence with the DOM that is often necessary to figure out why something isn't right.
  • Because JSX is React-specific and not a language feature, a special compilation process is necessary to convert JSX code to normal JS. Coming from a C++ background, compiling things doesn't bother me, but many JS developers are used to a less structured development.
Read full review
Automattic
  • WordPress breaks often so you need to have someone who understands how to troubleshoot, which can take time and money.
  • Some plugins are easier to customize than others, for example, some don't require any coding knowledge while others do. This can limit your project if you are not a coder.
  • WordPress can be easily hacked, so you also need someone who can ensure your sites are secure.
Read full review
Likelihood to Renew
Open Source
No answers on this topic
Automattic
The complications we have and the lack of support. Every plugin has a differente team of support in charge and make one plugin work with the other one always affects the website performance. It's a thousand times better to have only one provider with all functionalities included unless you are an expert web developer or have a team dedicated to it
Read full review
Usability
Open Source
React is just a bit of a different animal. I was avoiding it for the longest time. I thought for sure I would land on Vue or something else with a more approachable and familiar appearance. But after taking an online course in React, I started realize what people were raving about (and complaining about) and decided to implement it at our office for one of our products.
Read full review
Automattic
Extremely easy to use and train users. It took very little time to get everyone trained and onboarded to start using WordPress. Anytime we had any issues, we were able to find an article or video to help out or we were able to contact support. The menu options are well laid out so it is easy to find what you are looking for.
Read full review
Reliability and Availability
Open Source
No answers on this topic
Automattic
Anyone can visit WordPress.org and download a fully functional copy of WordPress free of charge. Additionally, WordPress is offered to users as open-source software, which means that anyone can customize the code to create new applications and make these available to other WordPress users.
Read full review
Performance
Open Source
No answers on this topic
Automattic
Mostly, any performance issues have to do with using too many plugins and these can sometimes slow down the overall performance of your site. It is very tempting to start adding lots of plugins to your WordPress site, however, as there are thousands of great plugins to choose from and so many of them help you do amazing things on your site. If you begin to notice performance issues with your WordPress site (e.g. pages being slow to load), there are ways to optimize the performance of your site, but this requires learning the process. WordPress users can learn how to optimize their WordPress sites by downloading the WPTrainMe WordPress training plugin (WPTrainMe.com) and going through the detailed step-by-step WordPress optimization tutorials.
Read full review
Support Rating
Open Source
Since it's open-source and very popular, the community support for React and related tools and libraries is excellent. There are a lot of people using the same tools, and so issues tend to get fixed quickly and "recipes" are easy to come by. And since it's backed by Facebook, they have a dedicated engineering team working on the progression of React.
Read full review
Automattic
I give this rating, which I believe to be a great rating for a community based support system that's surrounding it. Most platforms and products have their own, and as WordPress does have their own team that help here and there, a lot of it's handled by community involvement with dedicated users who are experts with the system who love to help people.
Read full review
In-Person Training
Open Source
No answers on this topic
Automattic
Varies by the person providing training. High marks as it's incredibly easy to find experienced individuals in your community to provide training on any aspect of WordPress from content marketing, SEO, plugin development, theme design, etc. Less than 10 though as the training is community based and expectations for a session you find may fall short.
Read full review
Online Training
Open Source
No answers on this topic
Automattic
It is very easy to find online resources to learn how to do just about anything with WordPress.
Read full review
Implementation Rating
Open Source
No answers on this topic
Automattic
WordPress is not a great solution if you have: 1) A larger site with performance / availability requirements. 2) Multiple types of content you want to share - each with its own underlying data structure. 3) Multiple sites you need to manage. For very small sites where these needs are not paramount, WordPress is a decent solution
Read full review
Alternatives Considered
Open Source
While this is a widely contested debate with various blog posts and benchmarks all over the place, its really a personal choice to determine what works for the team. Coming from a Angular 1.x background, I decided to try a new framework when Angular 2.x was announced and at that time React is gaining popularity and Vue hasn't taken off yet. Compared to Angular 1.x and Vue (hybrid of React and Angular) that split the logic from the html templates, I loved the way React breaks code into components using the jsx syntax. In my mind, this allows for cleaner components and easier maintenance
Read full review
Automattic
WordPress isn't as pretty or easy to use as certain competitors like Jimdo, Squarespace or HubSpot, but it makes up for it with its affordability, familiarity and the ability to find quality outside help easily. The same can't be said for certain competitors, as you might need to find an expert and it could get costly.
Read full review
Scalability
Open Source
No answers on this topic
Automattic
WordPress is completely scalable. You can get started immediately with a very simple "out-of-the box" WordPress installation and then add whatever functionality you need as and when you need it, and continue expanding. Often we will create various WordPress sites on the same domain to handle different aspects of our strategy (e.g. one site for the sales pages, product information and/or a marketing blog, another for delivering products securely through a private membership site, and another for running an affiliate program or other application), and then ties all of these sites together using a common theme and links on each of the site's menus. Additionally, WordPress offers a multisite function that allows organizations and institutions to manage networks of sites managed by separate individual site owners, but centrally administered by the parent organization. You can also expand WordPress into a social networking or community site, forums, etc. The same scalability applies to web design. You can start with a simple design and then scale things up to display sites with amazing visual features, including animations and video effects, sliding images and animated product image galleries, elements that appear and fade from visitor browsers, etc. The scaling possibilities of WordPress are truly endless.
Read full review
Return on Investment
Open Source
  • Our web applications now run much faster because the whole page doesn't reload
  • We spend less time developing UI components because a lot of them are readily available on NPM
  • We don't have to optimize apps for multiple browsers since React natively supports it.
Read full review
Automattic
  • Allowed us to being all websites under a single umbrella, saving costs on similar products.
  • It's increased our website turn time and made us faster and more efficient at launching websites.
  • Edits and tweaks happen much faster as we have a customized environment.
Read full review
ScreenShots