Bubble
Reviewed July 17, 2019Bubble is a visual, no-code web app builder. The company's vision is to become the default for app creation. It features a WYSIWYG UI editor, the ability to create workflows in response to events, an integrated database, ~700 of 3rd-party plugins and a very active user forum. It was founded in 2012 and bootstrapped to $115,000 MRR over seven years. Much of their early revenue came from one very large customer, but as of 2017 they had ~100k users (286,999 as of July 2019), ~10% paying. In early 2019, Bubble raised its first round of $6.25M.
Product Feel
- 👍 WYSIWYG editor is standard, slightly clunky
- 👍 Adding dynamic data is shockingly easy
- 👍 It’s straightforward to create basic data tables
- 👎 Building anything slightly complicated feels like stringing together a series of hacks. (They even call them “hacks” in their blog posts.) There is usually a way to approximate your desired effect, but you have to learn it by via asking in the Bubble Forum. 👍 Yet, most of what users want seem possible
Basic Usage
The above video creates a simple web app that display a random GIF of a dog. It demonstrates:
- adding an image to the page
- using the WYSIWYG editor
- inserting dynamic data into a field
- using an API call to GIPHY
- type error detection in field shown via red text
- autocomplete for selecting a random item from a list
- autocomplete for selecting the URL property from an item
- previewing a webpage
Dynamic Editor
One of Bubble's best features is its editor for adding what they call "dynamic data" into your web app. There is an "Insert Dynamic Data" button anywhere you could put a static value. Clicking on it results in a list of options to choose from. Once you select an option, it allows you to select "More" next to the resulting piece of data to see the possible operations you can perform on it, such as numerical calculations, string operations, or obtaining properties of an object. As a structured editor, there are no syntax errors possible, but it allows for arbitrarily-complex expressions. In the following video I construct a (nonsensical) expression by fluidly clicking on suggested autocompletions:
Workflows
The Workflow tab is where Bubble creators organize the event-driven logic of their app. Events are organized by their triggers, a "when ..." statement. In the following video, I explore (but don't modify) a few of the workflows for a todo list application. Notice how many clicks it takes to read through these flows, as contrasted with typical textual code.
Inspector
Bubble comes with its own custom inspector built-in, which allows its creators to debug and inspect their applications in the Bubble terms in which they created it, not by inspecting the compiled HTML. In the following video I inspect the intermediate values that produce a dynamic GIF:
Plugins
The Bubble Plugin marketplace has 686 plugins, some free and some paid.
Integrates with agencies
They have a special interface for agencies to build out an app initially with an eventual transfer to a customer.
Pricing
- Hobby - Free
- Personal - $14/month
- Professional - $62/month
- Team - $165 / month
- Production - $445 / month
- Additional capacity is $20 / unit / month
Wishes
- Auto-refresh preview page instead of "You will not be able to use the app until you refresh."
- Detect a keydown event and check which key was pressed
- Detect doubleclick events
- Save a list of objects to local memory
- Save to localstorage