Website Builder Development

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Website Builder Development

A website builder is a SaaS platform allowing users to create websites without code via visual editor. Technically, it's one of the most complex web products: WYSIWYG editor, code generation on-the-fly, hosting and CDN for thousands of user sites, DNS management.

Builder Architecture

Key choice: canvas-based or DOM-based editor.

Canvas (Adobe XD / Figma approach): arbitrary element placement by pixels. Maximum design freedom, but hard to generate responsive HTML.

Block/Section-based (Webflow, Wix approach): site consists of sections, inside — grid (grid/flexbox). Limited design, but generates adaptive code.

Component-based: user works with components (Hero, Features, Pricing, Footer). Simplest approach, similar to landing builder.

Page Data Model

{
  "sections": [
    {
      "id": "hero_1",
      "type": "hero",
      "props": {
        "background": "#1e40af",
        "title": "Site Title",
        "subtitle": "Subtitle",
        "buttonText": "Start",
        "buttonLink": "/signup"
      }
    },
    {
      "id": "features_1",
      "type": "features_grid",
      "props": {
        "columns": 3,
        "items": [...]
      }
    }
  ],
  "meta": { "title": "...", "description": "..." }
}

On render, JSON config converts to React/HTML components. Changes in editor → JSON update → instant live preview.

Live Preview

Site preview — iframe with user site. Changes applied via postMessage:

// Editor sends updates to iframe
iframe.contentWindow.postMessage({
  type: 'UPDATE_SECTION',
  sectionId: 'hero_1',
  props: { title: 'New Title' }
}, '*');

// iframe listens and updates React component
window.addEventListener('message', ({ data }) => {
  if (data.type === 'UPDATE_SECTION') {
    setSection(data.sectionId, data.props);
  }
});

Multi-tenant Hosting

Each user gets subdomain (username.builder.com) or custom domain. Nginx + wildcard SSL (*.builder.com) via Let's Encrypt + Certbot.

Custom domain: user adds CNAME record → platform issues SSL via Let's Encrypt HTTP-01 challenge.

Site generation and deploy:

  1. On publish — JSON config converts to static HTML + CSS + JS
  2. Static files upload to S3/CDN
  3. CDN set to user subdomain

Themes and Templates

User starts with template choice (category: business, portfolio, restaurant, landing). Template — set of sections with filled examples. Theme switch (color + font) changes CSS variables — instant style change without structure change.

Plan Limits

Free plan: username.builder.com subdomain, limited pages, platform branding in footer. Pro plan: custom domain, no branding, more pages, analytics.

SEO Tools

  • Meta title / description — edited directly in builder
  • OG image — upload or generate from title
  • Robots.txt and Sitemap — auto-generated on publish

Timeline

MVP (block editor, live preview, publish to subdomain, 10–15 section types): 4–6 months. Full builder with custom domains, CSS themes, SEO tools, e-commerce sections: 8–14 months.