
Security News
NVD Concedes Inability to Keep Pace with Surging CVE Disclosures in 2025
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
@datadog/browser-rum-core
Advanced tools
The @datadog/browser-rum-core package is part of Datadog's Real User Monitoring (RUM) solutions, designed to help developers monitor and analyze the performance and user interactions on web applications in real-time. It provides essential tools to capture detailed information about the user's experience, including performance metrics, errors, and user actions.
User Session Tracking
This feature allows you to track user sessions and capture key interactions and metrics. The provided code initializes the RUM monitoring with necessary configuration such as application ID and client token.
import { startRum } from '@datadog/browser-rum-core';
startRum({
applicationId: 'YOUR_APP_ID',
clientToken: 'YOUR_CLIENT_TOKEN',
site: 'datadoghq.com',
service: 'your-service-name',
// Specify a version number to identify the deployed version of your application
version: '1.0.0'
});
Error Tracking
This feature enables the tracking of errors that occur during a user's session. The code sample demonstrates how to manually log an error along with its severity level.
import { addError } from '@datadog/browser-rum-core';
addError(new Error('Something went wrong'), {
context: {
severity: 'error'
}
});
Performance Monitoring
This feature helps in monitoring the performance of different views within your application. The code sample shows how to mark the start of a new view, which can be used to measure view load times and other related metrics.
import { startView } from '@datadog/browser-rum-core';
startView({ name: 'homepage' });
Sentry's browser package provides error tracking and performance monitoring similar to @datadog/browser-rum-core. While both offer real-time monitoring and user insights, Sentry places a stronger emphasis on error resolution and developer workflows for debugging.
Elastic APM's RUM (Real User Monitoring) library is part of the Elastic Stack, focusing on performance monitoring and user behavior analytics. It is similar to @datadog/browser-rum-core but also integrates tightly with other Elastic products for a more unified monitoring solution.
rum-core
Datadog browser RUM core utilities.
v6.3.0
Public Changes:
only
Link to Facet List in Developer Extension (#2830)Internal Changes:
FAQs
Unknown package
The npm package @datadog/browser-rum-core receives a total of 1,325,696 weekly downloads. As such, @datadog/browser-rum-core popularity was classified as popular.
We found that @datadog/browser-rum-core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.
Security News
Join Socket for exclusive networking events, rooftop gatherings, and one-on-one meetings during BSidesSF and RSA 2025 in San Francisco.