Enhancing Your User Experience with Exciting New Features

Unlock Efficient Session Management

Our new User Sessions List feature allows you to view and search all user sessions by name, email, or user ID. This highly requested feature makes it easier to manage and analyze user behavior.

// Example usage:
const userSessions = getSessionList();
userSessions.forEach(session => {
  console.log(`Session ID: ${session.id}, User Email: ${session.email}`);
});

Take Debugging to the Next Level

Source Maps are now supported, enabling full symbolication of exceptions and console logs. To get started, follow these steps:

  1. Visit our CLI repository for instructions on managing releases and uploading Source Maps.
  2. Upload your Source Maps to enable advanced debugging capabilities.
# Example command to upload Source Maps
curl -X POST \
  https://example.com/source-maps \
  -H 'Content-Type: application/json' \
  -d '{"sourceMap": "your_source_map_content"}'

Seamless Multi-Page Support

We now track sessions across page loads and refreshes, providing a more comprehensive understanding of user interactions. This update helps you identify the root cause of bugs or poor user experiences by showing what led to the broken state.

// Example usage:
const userSession = getSession('user-id');
userSession.getPageViews().forEach(pageView => {
  console.log(`Page View: ${pageView.url}, Timestamp: ${pageView.timestamp}`);
});

Enhanced Network Pane

Our revamped network pane displays a list of all network requests and responses, making it easier to filter and search for unexpected network traffic.

  • Filter by request method (GET, POST, PUT, etc.)
  • Search by request URL or response status code
  • Sort by timestamp or request size

Your Feedback Matters

We’re grateful for your enthusiasm and feedback, which drives our development process. Share your thoughts on what features or improvements you’d like to see next.

Stay connected: Share this update with your network on Twitter, Reddit, LinkedIn, or Facebook.

If you’re passionate about helping us create better content, consider joining our Content Advisory Board. As a member, you’ll influence the type of content we create and enjoy exclusive benefits, including meetups, social accreditation, and swag.

Leave a Reply