When comparing Dropbox vs React, the Slant community recommends Dropbox for most people. In the question“What are the best website hosting providers?” Dropbox is ranked 16th while React is ranked 19th. The most important reason people chose Dropbox is:
You can use Dropbox via website, by installing a desktop client that creates a folder that you simply drag and drop files into, or with their mobile app. Everything synchronizes across all devices used and cloud storage. And Dropbox offers easy methods of sharing whatever is within it.
Specs
Ranked in these QuestionsQuestion Ranking
Pros
Pro Easy to use
You can use Dropbox via website, by installing a desktop client that creates a folder that you simply drag and drop files into, or with their mobile app. Everything synchronizes across all devices used and cloud storage. And Dropbox offers easy methods of sharing whatever is within it.
Pro Cross-platform desktop and mobile
Dropbox is available on iOS, Android, BlackBerry, Windows, OS X and Linux. By having a client for so many OS's pretty much anyone is covered no matter what kind of device or OS they are using.
Pro Allows sharing a folder
Using a desktop client: right click on the folder you want to share and select Dropbox > Share This Folder, then enter the e-mail addressees of people you want to share the folder with.
Pro Smart updates to big files
If a small portion of the file is changed it sends/receives only the differences (not the whole file), which is fast and bandwidth-efficient.
Pro Allows sharing a single file via link
Whether using desktop client or web interface, simply right click on the file you want to share and select Dropbox > Share link, then send the link to the people you want to share the file with. The recipient does not require a Dropbox account.
Pro Up to 18GB of free storage space
Dropbox personal accounts start out free, with 2GB of space, but users can get extra space by recommending the site to friends, or taking part in events like "Dropquest", where users can win extra space by solving puzzles.

Pro Linux support
Dropbox offers native Linux support, integrates with Nautilus file manager.
Pro Reliable
Pro Desktop client has no file size limit
As long as you have enough storage available, you can upload files of any size using Dropbox desktop client.
Pro Folders can be downloaded compressed to save bandwidth
To save bandwidth and download speed you can choose to compress a folder into a zip archive for download.
Pro Adjustable bandwidth use
To not slow down the network or save traffic you can limit the upload and download speeds of Dropbox.
Pro Lots of addons and integrations
There are official and third-party Dropbox add-ons that extend the functionality of the service and add ease of use of existing features.
Additionally, Dropbox can be integrated with existing applications to bring its functionality to other apps.
Pro 30-day version control
Dropbox keeps deleted and earlier versions of files for a month.
Pro Instant disaster recovery
Your files always synced online means instant disaster recovery. When your hard drive becomes unbootable, pick up another laptop and just carry on with your life from where you last saved.
Pro Available free storage can be increased with referrals
You get extra free space for you and your friend if they sign up.
Pro Fast sync speed
Pro Easy to reuse components
Since every single UI component is created independently in JavaScript, it becomes very easy to reuse them throughout your app without having to re-write them.
Pro Supported by Facebook and Instagram
React is built by Facebook engineers initially to be used only for their inner projects especially to solve the problem of building large complex applications with constantly changing data.
Pro Server side rendering
React can render it's components and data server side, then it sends those components as HTML to the browser.
This ensures faster initial loading time and SEO friendliness out of the box, since it's indexed as any other static website by search engines.
Pro Virtual DOM support
Instead of relying on the DOM, React implements a virtual DOM from scratch, allowing it to calculate precisely what needs to be patched during the next screen refresh. This is orders of magnitude faster than fiddling with the DOM itself.
Pro One-way data flow
React's one-way data binding (or one-way data flow) means that it's easy to see where and how your UI is updated and where you need to make changes. It's also very easy to keep everything modular, fast and well-organized.
Pro Can be used with different libraries
ReactJS can be used independently as the only library for building the front-end, or it can be used alongside JavaScript libraries such as jQuery, or even Angular.
Pro Template engine independent
React provides a template engine (JSX) which is easy to use. But it's not mandatory.
Pro Widely used
The framework is widely used in the industry.
Pro Functional programming style leads to less buggy UIs
Pro Easy to write tests
Since React's virtual DOM system is implemented completely in JavaScript, it's very easy to write UI test cases.
Pro Good debugging tools
React has an official Chrome Extension which is used as a developing and debugging tool. It can be used to quickly and painlessly debug your application or view the whole application structure as it's rendered.
Pro Flux architecture pattern
Flux is a platform agnostic pattern which can technically be used with any application or programming language.
One of Flux' main features is that it enforces uni-directional data flow which means that views do not change the data directly.
With React this is useful because this way it's easier to understand an application as it starts getting more complicated. By having two-way data binding, lead to unpredictable changes, where changing one model's data would end up updating another model. By using the Flux architecture, this can be avoided.
Pro Extensive SVG support
Since React v0.15, SVG is fully supported. React supports all SVG attributes that are recognized by today's browsers.
Pro Keep control over your app's logic
React is just a view library, so you still have (almost) full control over how your app behaves.
Pro Supported by ClojureScript libraries
Reagent, Om, Rum, etc.
Pro Tested on Facebook itself
React is used on one of the most visited websites on the planet, Facebook. With stellar results and with millions of people experiencing it every day.
Cons
Con Too little free space
There is just too little of free space available comparing to the competition.

Con Not secure
They don't apply end-to-end encryption, files are visible to admins, governments, etc..
Con No privacy
Extensive collecting and distribution of user data to commercial third parties.
Con Consumes a lot of CPU resources when syncing many files
Con All-or-nothing (non-selective) upload
Uploading generated contents (cache, compiled code, etc.) is prone to conflicts, wastes bandwidth and free space.
Con Low bandwidth
Con Dropbox keeps deleting features, chasing customers away
For instance, all photo albums got deleted. It used to be very easy to share a couple og photos, now it's PAINFUL and must be done file by file.
Con Nocive development model
Takes a lot of decisions that usually damage community, from deleting features to making impossible to use with other filesystems than ext4 because they decided without a plausible reason (they said it was about xattrs, but all modern linux filesystems supports xattrs, so it's bs.)(they remove this later, but it's too late).
Con Problems when synching between Linux and Windows devices (unconfirmed)
This summer I lost thousands of files due to this problem on older projects which subsequently needed revising and had to be rebuilt as tons of the source was gone.
Con Restricted only to 3 devices for FREE accounts
Recently dropbox decreased the number of linked devices to 3, so you can't have more than 3 linked devices. This is problematic if you use Dropbox to sync between your computers.
Con Can unintentionally delete your files if you reinstall your OS without closing Dropbox
If you reinstall the operation system for your PC and you do not close Dropbox, it will delete all files.
Con Heavy on memory
React's virtual DOM is fast, but it requires storing elements in the virtual and real DOM increasing memory usage for the page. This can be a real problem for single-page webapps designed to be left running in the background.
Con Template(view) mixed into code
Con Verbose
React gets a little verbose as applications get more complicated with more components. It's simply not as straightforward as simply writing HTML and JavaScript would be.
Con You have to learn a new syntax
Requires learning a custom syntax, JSX, that has some gotchas and introduce complexity, a steeper learning curve, and incompatibility with other tools.
Though you can opt out from JSX and use vanilla JS instead. But that is not recommended since it adds a lot of unneeded complexity which JSX tries to avoid.
Con Not a complete solution
React does not do everything for the developer, it's merely a tool for building the UI of a web app. It does not have support for routing or models, at least not out of the box. While some missing features can be added through libraries, to start using React and use it in production, you still would need to have experience, or at least a good grasp on what the best libraries to use would be.
Con Large file size
React's react.min.js
is 145.5KB in size. It's much larger than some other libraries that offer roughly the same features and it's almost the same size as some MV* frameworks such as Angular or Ember that offer more features out of the box.
Although, it should be mentioned that sometimes having a smaller library may force developers to reinvent the wheel and write inefficient implementations on features that React already has. Ending up with a larger application that's harder to maintain and/or that has bad performance.
Con Renders too frequently
Con No support for legacy browsers
React has recently dropped support for Internet Explorer 8. While the library may still work on IE8, issues that affect only IE8 will not be prioritized and/or solved.
