Online Calculator 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

Developing an Online Calculator

An online calculator is one of the most effective lead generation tools on a website. A visitor enters project data, sees an approximate cost or calculation result, and is highly likely to leave a contact. Calculator pages have 2–5x higher conversion than static price lists.

Calculator types

Cost — "How much will website development / repair / SEO cost". Parameters are refined step by step, final number is a range.

ROI / Payback — "How much you'll save / earn with our product". Current metrics are entered, savings are output.

Technical — mortgage calculator, material calculation, unit converter. Formula is fixed.

Quiz with result — "We'll match a plan for you". Multi-step form, result is recommendation.

Formula architecture

Formula is calculated on client in real-time. For complex formulas with branching, describe logic as config rather than hardcode if-else:

interface CalculatorConfig {
  inputs: InputDefinition[];
  formula: FormulaDefinition;
  output: OutputDefinition;
}

interface InputDefinition {
  id:       string;
  type:     'number' | 'select' | 'checkbox' | 'range' | 'toggle';
  label:    string;
  default:  number | string | boolean;
  min?:     number;
  max?:     number;
  step?:    number;
  options?: { value: string; label: string; multiplier?: number }[];
}

type FormulaFn = (inputs: Record<string, number>) => number;

Example config for website cost calculator:

const websiteCalculator: CalculatorConfig = {
  inputs: [
    {
      id: 'page_count',
      type: 'range',
      label: 'Number of pages',
      default: 5,
      min: 1,
      max: 50,
      step: 1,
    },
    {
      id: 'site_type',
      type: 'select',
      label: 'Site type',
      default: 'landing',
      options: [
        { value: 'landing',   label: 'Landing page',    multiplier: 1 },
        { value: 'corporate', label: 'Corporate',       multiplier: 1.8 },
        { value: 'ecommerce', label: 'E-commerce',      multiplier: 3 },
        { value: 'custom',    label: 'Complex project', multiplier: 5 },
      ],
    },
    {
      id: 'has_cms',
      type: 'toggle',
      label: 'Content Management System (CMS)',
      default: false,
    },
    {
      id: 'has_seo',
      type: 'checkbox',
      label: 'SEO optimization',
      default: false,
    },
  ],
};

Calculation result

const calculate = (inputs: Record<string, number | string | boolean>): CalculationResult => {
  const basePrice = 50_000;
  const typeMultipliers: Record<string, number> = {
    landing:   1,
    corporate: 1.8,
    ecommerce: 3,
    custom:    5,
  };

  const pageCount = inputs.page_count as number;
  const siteType  = inputs.site_type as string;
  const hasCms    = inputs.has_cms as boolean;
  const hasSeo    = inputs.has_seo as boolean;

  let price = basePrice * typeMultipliers[siteType] * (1 + (pageCount - 5) * 0.1);
  if (hasCms) price += 15_000;
  if (hasSeo) price += 25_000;

  return {
    total: Math.round(price),
    breakdown: [
      { label: 'Base price', value: basePrice },
      { label: 'Site type multiplier', value: price - basePrice },
    ],
  };
};