Open Source Alternatives LogoOpen Source Alternatives
AlternativesBlogAdvertise
Open Source Alternatives LogoOpen Source Alternatives

Stay Updated

Subscribe to our newsletter for the latest news and updates about Alternatives

Open Source Alternatives LogoOpen Source Alternatives

Handpicked Open Source Alternatives to Paid Softwares

Product
  • Categories
  • Tag
  • Advertise
Resources
  • Blog
  • Collection
  • Submit
  • Advertise your tool
Company
  • Privacy Policy
  • Terms of Service
  • Refund Policy
  • Sitemap
Alternatives
  • Claude Code
  • Jira
  • Notion
  • Slack
  • Linear
  • Wispr Flow
  • All alternatives
Copyright © 2026 All Rights Reserved.
Home/Categories/Web Development/VvvebJs
icon of VvvebJs

VvvebJs

Open source alternative to Webflow and Framer

Build drag-and-drop web pages using a vanilla JavaScript page builder library. Runs on Bootstrap 5 with no dependencies, self-hosted via Git clone or Docker.

8.7K starsJavaScriptApache-2.0Active recently
Visit websiteGitHub repoDeployDeploy on Hostinger
image of VvvebJs
Contents
  1. 01Who VvvebJs is for
  2. 02The problem it solves
  3. 03How it solves it
  4. 04Strengths and trade-offs
  5. 05VvvebJs vs alternatives
  6. 06Quick start
  7. 07Tech stack
  8. 08FAQ
  9. 09Similar open-source tools
TL;DR

VvvebJs is a drag-and-drop page builder library written in vanilla JavaScript, using Bootstrap 5 with no external dependencies. It replaces commercial visual editors like Webflow and Framer for teams that want a self-hosted, customizable approach. Apache 2.0 licensed and actively maintained since 2017. Best for developers embedding a visual editor in their own product or agencies delivering editable static sites.Apache-2.0 · JavaScript · 8.7K stars · Active recently

who it's for

Who VvvebJs is for#

Developers embedding a visual editor in their own product

VvvebJs loads via a JavaScript init call and points the builder at any HTML page or template. The init API controls which pages, component libraries, and UI panels the editor exposes, giving developers full control over the editing surface.

Skip if:

Teams that need a fully managed hosting platform with CDN, form submission, and user accounts built in. VvvebJs provides the editor; you build or integrate the surrounding infrastructure.

Agencies delivering client-editable Bootstrap 5 websites

Agencies can build a Bootstrap 5 template, configure the component library to expose the right blocks, and hand clients a browser-based editing interface that saves pages back to a PHP or Node server without any third-party subscription.

Skip if:

Clients who need live collaboration, multi-user version history, or cloud-synced asset management out of the box. VvvebJs saves files to a server but has no built-in multi-user workflows.

Teams building a custom CMS using a page builder component

The related Vvveb CMS project, maintained in a separate repository, shows a full-featured CMS built on VvvebJs. Teams building their own CMS can use VvvebJs for the visual editing layer and wire in their own content storage, user auth, and routing.

Skip if:

Teams evaluating complete, ready-to-run CMS options. VvvebJs is a library, not a standalone CMS. The full Vvveb CMS project may be a better starting point for turnkey content management.

the problem

The problem it solves#

Building a custom visual page editor from scratch means implementing drag-and-drop logic, a component library, inline text editing, image management, and undo/redo, each as a separate front-end problem. Most teams that need this capability for a CMS or content tool end up paying for hosted commercial tools like Webflow, handing over data control and paying recurring fees for a capability they need to own.

The alternative is assembling third-party drag-and-drop libraries with a build pipeline, which adds maintenance overhead and brittle dependencies. Development teams building white-labeled or embedded editors often find no direct path between a full custom build and a proprietary subscription.

how VvvebJs solves it

How it solves it#

Drag-and-drop component and block editing

Drag Bootstrap 5 components, content blocks, and layout sections directly onto the page canvas with live preview. The side panel shows the selected element's CSS properties, class list, and editable content inline. No page reload or separate build step is needed to see changes.

Live code editor with CodeMirror integration

An embedded code editor lets users view and edit the raw HTML and CSS of any selected element without leaving the page. Changes apply instantly to the canvas. An optional CKEditor plugin replaces the built-in text editor for richer inline text formatting.

Undo/redo and element tree navigation

Full undo/redo history covers every drag, drop, and property change in an editing session. A file manager panel shows the full DOM hierarchy of the page, and a breadcrumb bar tracks the selected element's position in the tree, making it easier to select and edit nested elements.

Bootstrap 5 component library with widgets

Ships with a full library of Bootstrap 5 UI components and a separate widgets set covering YouTube embeds, Google Maps, Chart.js charts, and animate-on-scroll effects. An SVG icon component bundles hundreds of free icons. Custom component modules load at init time through the JavaScript API.

Page export, zip download, and server save

Pages download as standalone HTML or as a full zip archive including all assets, using the built-in zip plugin. Server-side saving works via save.php for PHP hosts or save.js for a Node.js Express handler, both included in the repository.

Global theme and Google Fonts typography editor

A theme editor controls global typography and color palette variables that cascade across all pages using a shared template. The full Google Fonts list is built in for font selection. Templates save as either a site-wide default or a page-specific override.

strengths · trade-offs

Strengths and trade-offs#

Strengths

  • No runtime dependencies and no build toolsThe core library is vanilla JavaScript with no npm packages in the runtime path. Setting up the editor requires cloning the repository and opening a file through a web server, not running a build pipeline. This makes it straightforward to integrate into PHP projects, plain static sites, and legacy codebases.
  • Apache 2.0 license for commercial useApache 2.0 allows commercial use, modification, and distribution without a fee. Unlike AGPL-licensed tools that require open-sourcing derivatives, you can embed VvvebJs in a commercial product or service without license restrictions. The 8,679 GitHub stars and 1,836 forks reflect wide adoption.
  • Docker deployment with a single commandThe official Docker image (vvveb/vvvebjs) runs the full editor on port 8080 with a single command. No Kubernetes setup required. The same configuration runs on any VPS or shared PHP hosting environment, keeping the barrier to self-hosting low.
  • Extensible component and input systemNew components and input types are added by writing JavaScript modules that the builder loads at init time, using the same API as the built-in Bootstrap 5 and widget libraries. A React wrapper is available as a separate community package for teams building React applications.

Trade-offs

  • -Page saving requires a PHP or Node serverThe editor opens and edits HTML in the browser, but saving pages back to disk requires a running PHP (save.php) or Node.js Express (save.js) process. Purely static hosting on S3 or a CDN is not enough for a production save workflow. Teams on shared PHP hosting are covered, but serverless deployments need an additional backend component.
  • -304 open issues with documentation gapsThe GitHub repository has 304 open issues. The community wiki documents core usage, but advanced integration scenarios and custom component authoring are covered mainly through GitHub Discussions and third-party tutorials. Teams building production integrations should expect to read source code to fill documentation gaps.
  • -Editor only, no CMS or hosting layer includedVvvebJs provides the editing interface and component library but does not include content storage, user management, page routing, or hosting. Webflow and Framer include those layers by default. Teams deploying VvvebJs in a product need to build or integrate those capabilities separately.
versus alternatives

VvvebJs vs alternatives#

VvvebJs vs Webflow

Webflow and VvvebJs both enable visual web page building, but they serve different deployment models. Webflow is a fully hosted platform managing CDN delivery, form submission, CMS content, and user accounts under a monthly subscription. VvvebJs is a self-hosted JavaScript library covering the editing interface layer only.

FeatureVvvebJsWebflow
LicenseApache 2.0Proprietary
HostingSelf-hostedCloud-only
CostFree (self-hosted)Paid subscription
CMS built-inNoYes
Form handlingNoYes

VvvebJs is the better choice when you need a page editor embedded in your own application, when your team runs a PHP or Node server and wants full control over saved content, or when you are building with Bootstrap 5. Webflow is the better fit when you want hosting, CMS, and a visual editor managed together under one subscription with no server to maintain.

VvvebJs vs Framer

Framer evolved from a prototyping tool into a hosted website builder favored by design-led teams. Like Webflow, Framer is cloud-only: pages live on Framer's infrastructure and are served from their CDN.

FeatureVvvebJsFramer
LicenseApache 2.0Proprietary
HostingSelf-hostedCloud-only
CostFree (self-hosted)Free tier with paid plans
React integrationVia wrapperNative
Self-hostingYesNo

Framer suits design-led teams building marketing sites with advanced motion and a polished managed workflow. VvvebJs is the better fit for development teams embedding a customizable editor in their own product, or agencies that need a self-hosted page builder without recurring platform fees.

install · quick start

Quick start#

bash
Self-hosting uses Docker with a built-in PHP environment, or a Git clone served through any web server.
```bash
docker run -p 8080:80 vvveb/vvvebjs
```
tech stack · detected from GitHub

What it's built on#

Languages
JavaScript
Frameworks
Express
Runtimes
Node.js
frequently asked

FAQ#

Is VvvebJs free to use commercially?

Yes. VvvebJs is licensed under Apache 2.0, which allows commercial use, modification, and distribution without a fee. You can embed it in a commercial product, ship it to clients, or run it as part of a hosted service without a separate license agreement.

Does VvvebJs require a backend server to function?

The editor opens and renders from static files, so you can run and test it using any local web server such as Apache, Nginx, or XAMPP. Saving pages back to disk requires PHP (save.php) or Node.js (save.js), both included in the repository. Image uploads also need a server-side script. A purely static frontend deployment is not enough for a full production workflow.

How does VvvebJs compare to Webflow as a page builder?

Webflow is a hosted platform managing CDN, CMS, forms, and user accounts under a subscription. VvvebJs is a self-hosted JavaScript library covering the editing interface only. VvvebJs costs nothing to run on your own server, but you handle infrastructure yourself. Webflow is the better choice when you want everything managed; VvvebJs suits teams that need a customizable editor embedded in their own product or want to avoid subscription fees.

Can I add custom components to VvvebJs?

Yes. The component system loads JavaScript modules at init time, following the same structure as the built-in Bootstrap 5 and widget libraries. The README includes a JavaScript initialization example, and the project wiki documents the component API for adding new inputs and component types.

What is the quickest way to get VvvebJs running?

Run the official Docker image, which starts the editor and a PHP environment at http://localhost:8080/editor.php. For local development without Docker, clone the repository and open editor.html through a web server like Apache or XAMPP. Chrome can also open it directly using the --disable-web-security flag for quick visual testing without a server.

also worth a look

Similar open-source tools#

Silex

Silex

3KTypeScriptAGPL-3.0
Onlook

Onlook

Visual React editor where every design change writes real code

26.7KTypeScriptApache-2.0
WordPress

WordPress

21.4KPHPGPL-2.0
Revyme

Revyme

Build stunning website, export your code anytime

126TypeScriptAGPL-3.0
Grav

Grav

Flat-file CMS for fast, self-hosted websites.

15.7KPHPMIT
GrapesJS

GrapesJS

Build drag-and-drop page editors inside your own stack.

26.2KTypeScriptBSD-2-Clause

Repository

Stars
8.7K
Forks
1.8K
License
Apache-2.0
Latest
2.0.9
Last commit
80 days ago
Last verified
Sep 20, 2026
Repo
givanz/VvvebJs ↗

Additional details

Language
JavaScript
Open issues
304
Contributors
10
First release
2017

Categories

Web DevelopmentDesign & CreativeNo-Code & Low-Code

Tags

Website BuilderUI/UX DesignLow-codeWeb Hosting