Socket
Socket
Sign inDemoInstall

domrec-core

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    domrec-core

Base package for recording and replaying DOM updates on web pages


Version published
Weekly downloads
44
decreased by-18.52%
Maintainers
1
Install size
29.0 kB
Created
Weekly downloads
 

Readme

Source

DOMRec-Core

DOMRec records and replays DOM updates to make lightweight, pixel-perfect screenshots and movies. Perfect for Web application demos.

This project is only possible due to the awesome groundwork by https://github.com/rocallahan in https://github.com/Pernosco/DOMRec. See his article: DOM Recording For Web Application Demos.

Ecosystem

The ability to record the DOM of a website makes this package very flexible and allows many other possibilites. There are a few tools that already built up on this:

  • Puppeteer: Record the DOM when using puppeteer. This makes it perfect for E2E tests, as it also works in headless mode,
  • Playwright: Record the DOM when using playwright. This makes it perfect for E2E tests, as it also works in headless mode,
  • Firefox Extension: A small extension which allows you to easily use domrec-core to record DOM changes of any website.

Installation

npm install --save domrec-core
# or
yarn add domrec-core

You can find the two needed files (recording.js and replay.js) inside the dist folder.

Usage

The code basically consists of two parts:

  • Recording the DOM
  • And replaying an existing record

Recording

To start a recording, you have to pass an HTML node to the DOMRecorder class. You can also pass document.body in case you want to record the whole window.

Example which only records everything inside a div with the id content:

<script src="./dist/recording.js"></script>
<script>
window.recorder = new DOMRecorder(document.getElementById("content"));
</script>

In most cases you want to start recording after the DOMContentLoaded event has fired.

Ending a recording is easy:

const contents = window.recorder.stop();
document.body.textContent = JSON.stringify(contents);

Replaying

Use the DOMReplayManager to setup and init the replay of a recording. You have to pass two parameters:

  • first parameter: The node you want to play the recording inside
  • second parameter: A stored recording
<script src="./dist/replay.js"></script>
<div id="replayContainer" style=""></div>
<script>
  const recording = contents // the stored contents object from the recording above
  const m = new DOMReplayManager(document.getElementById('replayContainer'), recording)
  m.addReplayStylesheet('./domrec-replay.css')
  m.init()
</script>

In most cases you want to add the demo/domrec-replay.css file with the addReplayStylesheet function, otherwise it will look really bad. Try it out ;)

Demo

  • Download this repository
  • Install all dependencies: npm install
  • Build the source code: npm run build (in case you want to have source-maps of better debugging, use build:dev)
  • Open the demo/record-demo.html in the browser and start recording.
  • Paste the finished recording below the //// Paste your demo data text here. inside demo/replay-demo.html and simply open demo/replay-demo.html

Data Structures

The recording produces an object with the following properties:

  • initialState: The initial state of the DOM when starting to record
  • actions: The DOM changes
  • stylesheets: The (external) stylesheets of the website when the recording started
  • iframeStylesheets: Contains the URL of stylesheets of iframes encountered during recording.
  • height: The height of the initial root node
  • width: The width of the initial root node

FAQs

Last updated on 28 Nov 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc