Session Replay (LogRocket/FullStory) Setup for Website

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

Session Replay (LogRocket/FullStory) Setup

Session Replay records DOM events, clicks, scrolls, and network requests from users and allows you to replay their session as a video. The tool is essential for debugging unusual bugs, analyzing conversion funnels, and UX research.

LogRocket vs FullStory

Criterion LogRocket FullStory
Primary focus Debugging + Redux/Network UX analytics + DX Data
Error integration Built-in, with traces Via integrations
Privacy masking Flexible Flexible
Pricing model By sessions/month By users
Self-hosted No No

Open-source alternative with self-hosting—OpenReplay.

LogRocket Installation

import LogRocket from 'logrocket';
LogRocket.init('your-app/project-id');

// User identification
LogRocket.identify(user.id, {
  name: user.name,
  email: user.email,
  plan: user.subscriptionPlan
});

For React, add logrocket-react for component tracking:

import setupLogRocketReact from 'logrocket-react';
setupLogRocketReact(LogRocket);

Masking Sensitive Data

Must do before production—passwords, payment data, personal fields:

LogRocket.init('app/id', {
  dom: {
    inputSanitizer: true, // hides all inputs
    textSanitizer: false
  },
  network: {
    requestSanitizer: request => {
      if (request.headers['Authorization']) {
        request.headers['Authorization'] = '[redacted]';
      }
      return request;
    }
  }
});

Or via the lr-hide CSS class on specific elements.

Binding to Sentry Errors

LogRocket.getSessionURL(sessionURL => {
  Sentry.configureScope(scope => {
    scope.setExtra('sessionURL', sessionURL);
  });
});

Now each Sentry error has a direct link to the session recording where the bug occurred.

Timeline

Setup and basic masking configuration—1 day. Integration with Sentry/Datadog and session filter setup—2–3 days.