Web Interface for Scraper Bot Management

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_website-b2b-advance_0.png
    B2B ADVANCE company website development
    1262
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1171
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    874
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1094
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    831
  • image_bitrix-bitrix-24-1c_fixper_448_0.png
    Website development for FIXPER company
    851

Web Interface Implementation for Scraper Bots Management

Web interface transforms CLI tool or API into product usable by non-technical employees. Parser management interface includes task list, configuration, run/stop, view results, and error monitoring.

Key Screens

Dashboard — summary statistics: number of active parsers, records collected per day, success rate percentage, recent errors.

Parser List — table with columns: name, source, status (active/paused/error), last run, next scheduled run.

Parser Card — configuration, run history with logs, view latest collected data.

Data — results table with filtering, search, CSV export.

Stack

  • React + TypeScript with Vite
  • TanStack Query — data fetching and status auto-update
  • TanStack Table — tables with sorting and filtering
  • Recharts — statistics graphs
  • WebSocket / SSE — real-time progress updates

Real-Time Progress Component

import { useEffect, useState } from 'react';

interface RunProgress {
  status:    'pending' | 'running' | 'completed' | 'failed';
  processed: number;
  total:     number;
  errors:    number;
}

function ScraperRunProgress({ runId }: { runId: number }) {
  const [progress, setProgress] = useState<RunProgress | null>(null);

  useEffect(() => {
    const es = new EventSource(`/api/v1/runs/${runId}/progress`);
    es.onmessage = (e) => setProgress(JSON.parse(e.data));
    es.onerror   = () => es.close();
    return () => es.close();
  }, [runId]);

  if (!progress) return <Spinner />;

  const pct = progress.total > 0
    ? Math.round(progress.processed / progress.total * 100)
    : 0;

  return (
    <div className="space-y-2">
      <div className="flex justify-between text-sm">
        <span>{progress.processed} / {progress.total}</span>
        <span className="text-red-500">{progress.errors} errors</span>
      </div>
      <Progress value={pct} />
    </div>
  );
}

Parser Configurator

Form with fields: source URL, schedule (cron-picker), headers, proxy settings, field mapping (drag-and-drop from found fields to schema fields).

Timeframe

Web interface with dashboard, results table, and monitoring: 6–10 working days.