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

omdomdom

v0.3.2

Published

A virtual DOM implementation that turns strings into HTML

Downloads

71

Readme

Omdomdom is intentionally very minimal. Its primary function is to produce HTML nodes from strings.

Pull requests and issues welcome!

Install

NPM

$ npm i omdomdom

Then import:

import { render, patch, create } from "omdomdom"

create(...)
render(...)
patch(...)

CDN

<!-- The unminified bundle for development -->
<script
  type="text/javascript"
  src="https://cdn.jsdelivr.net/npm/[email protected]/dist/omdomdom.js"
  integrity="sha256-9W7FYYl47/+SRAOFrQZliYxvJnjGHwUySXLBKqNrNfI="
  crossorigin="anonymous"
></script>

<!-- Minified/uglified bundle for production -->
<script
  type="text/javascript"
  src="https://cdn.jsdelivr.net/npm/[email protected]/dist/omdomdom.min.js"
  integrity="sha256-TxN00Fm3M/2YL8zxyAY2lnR8obKHtJs55yOHSCLbX1k="
  crossorigin="anonymous"
></script>

The CDN will set window.Omdomdom on your page.

Virtual Node Structure

If you're familiar with other virtual DOM implementations, then this will look familiar. :)

VirtualNode {
  // One of three value types are used:
  // - The tag name of the element
  // - "text" if text node
  // - "comment" if comment node
  type: String,

  // An object whose key/value pairs are the attribute
  // name and value, respectively
  attributes: Object.<attribute: string, value: string>,

  // Is set to `true` if a node is an `svg`, which tells
  // Omdomdom to treat it, and its children, as such
  isSVGContext: Boolean,

  // The content of a "text" or "comment" node
  content: String,

  // An array of virtual node children
  children: Array<VirtualNode>,

  // The real DOM node
  node: Node
}

API

create(string|node)

The function takes one argument: an html string or a real DOM node. Either way, it will be converted into a virtual node.

Option 1: HTML String

const html = "<p style='color: pink'>I'm pink!</p>"
const vNode = create(html)

If the value is indeed a string, then it will be passed to DOMParser.

Option 2: Node

This is a more performant option if you have high confidence in the structure of your HTML string.

const html = "<p style='color: pink'>I'm pink!</p>"
const wrapper = document.createElement("div")
wrapper.innerHTML = html

const vNode = create(wrapper)

The main downside to this option is you lose the helpful error messaging DOMParser provides from option 1. This is usually best for simpler nodes.

render(vNode, targetNode)

Inserts your node somewhere on the page.

render(vNode, document.getElementById("root"))

Under the hood, all render does is use targetNode.appendChild(vNode.node).

patch(nextVNode, oldVnode)

Updates your original (old) virtual node with changes from the next one.

const nextHtml = "<p style='color: red'>I'm new and fresh.</p>"
patch(create(nextHtml), vNode)

Do note that any virtual nodes created as the first argument to patch are discarded. Again, the only virtual node tree you need to care about is the old one.

Reconciliation

Reconciliation works similar to React and others, by comparing an older (live) virtual DOM tree to a new (template) one. The live tree is then patched with changes from the template.

Keys

If you have elements in dynamically generated lists or where there's many siblings, use the data-key attribute to memoize the node between patches.

<button data-key="123">Click me</button>

The value for the attribute only needs to be unique among its sibling nodes.

Performance

If you think it can be improved, please contribute. :)

Support

Omdomdom works in all modern browsers and IE11. It requires no polyfills/dependencies.