Files
rrweb/docs/recipes/index.md
Justin Halsall bcf93ca926 docs: revamp installation docs for esm and umd (#1788)
* docs: revamp installation docs for esm and umd

Document recommended install paths across the main guides and package
READMEs for rrweb, @rrweb/all, @rrweb/record, @rrweb/replay, and
rrweb-player.

Clarify three usage modes: bundler/npm, browser no-build with
import maps and +esm, and legacy UMD fallback.

* Apply suggestions from code review

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Apply formatting changes

* Apply suggestion from @eoghanmurray

Co-authored-by: Eoghan Murray <eoghan@getthere.ie>

* Apply formatting changes

* docs(all): streamline README usage section

Move the guide link next to the import example and remove the
duplicated Usage section to keep docs concise and easier to scan.

* docs(readme): update gzip size badges in zh-cn readme

* docs(plugins): update readme imports to scoped esm packages

Replace `rrweb` default imports and `rrweb.Replayer` usage with
`@rrweb/record` `record` and `@rrweb/replay` `Replayer` in plugin
usage examples.

Also update canvas WebRTC plugin imports to scoped `@rrweb/*`
package names to keep docs aligned with current package structure.

* docs: update docs to prefer scoped esm packages

replace `rrweb` default import examples with `@rrweb/record` and
`@rrweb/replay` across recipes and guides in en/zh-CN.

clarify package selection for new integrations, add `@rrweb/all`
convenience guidance, and refresh CDN/style import snippets for ESM and legacy UMD compatibility.

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Eoghan Murray <eoghan@getthere.ie>
2026-02-17 13:59:02 +01:00

81 lines
2.6 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Recipes
> You may also want to read the [guide](../../guide.md) to understand the APIs, or read the [design docs](../) to know more technical details of rrweb.
## Scenarios
### Record And Replay
Record and Replay is the most common use case, which is suitable for any scenario that needs to collect user behaviors and replay them.
[link](./record-and-replay.md)
### Dive Into Events
The events recorded by rrweb are a set of strictly-typed JSON data. You may discover some flexible ways to use them when you are familiar with the details.
[link](./dive-into-event.md)
### Load Events Asynchronous
When the size of the recorded events increased, load them in one request is not performant. You can paginate the events and load them as you need.
[link](./pagination.md)
### Real-time Replay (Live Mode
If you want to replay the events in a real-time way, you can use the live mode API. This API is also useful for some real-time collaboration usage.
[link](./live-mode.md)
### Custom Event
You may need to record some custom events along with the rrweb events, and let them be played as other events. The custom event API was designed for this.
[link](./custom-event.md)
### Interact With UI During Replay
By default, the UI could not interact during replay. But you can use API to enable/disable this programmatically.
[link](./interaction.md)
### Customize The Replayer
When `Replayer` and the rrweb-player UI do not fit your need, you can customize your own replayer UI.
[link](./customize-replayer.md)
### Convert To Video
The event data recorded by rrweb is a performant, easy to compress, text-based format. And the replay is also pixel perfect.
But if you really need to convert it into a video format, there are some tools that can do this work.
[link](./export-to-video.md)
### Optimize The Storage Size
In some Apps, rrweb may record an unexpected amount of data. This part will help to find a suitable way to optimize the storage.
[link](./optimize-storage.md)
### Canvas
Canvas is a special HTML element, which will not be recorded by rrweb by default. There are some options for recording and replaying Canvas.
[link](./canvas.md)
### Console Recorder and Replayer
Starting from v1.0.0, we add the plugin to record and play back console output.
This feature aims to provide developers with more information about the bug scene. There are some options for recording and replaying console output.
[link](./console.md)
### Plugin
The plugin API is designed to extend the function of rrweb without bump the size and complexity of rrweb's core part.
[link](./plugin.md)