npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

domrec-core

v0.2.0

Published

Base package for recording and replaying DOM updates on web pages

Downloads

228

Readme

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