
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
dom-node-iterator
Advanced tools
NodeIterator
is an interface originally specified by
DOM Level 2.
While it is a useful tool for seeking within the nodes of the DOM, it has
some warts and its
implementation is inconsistent across browsers.
Among the problems with NodeIterator
are that it specifies arguments that
really should be optional, but are required on some browsers. Several browsers
expose two additional properties not in the original specification but later
added to the DOM living standard, referenceNode
and
pointerBeforeReferenceNode
.
This module attempts to modernize NodeIterator
for use in all major browsers.
It does this through the following modifications:
The whatToShow
and filter
arguments are optional.
The referenceNode
and pointerBeforeReferenceNode
properties are shimmed
when they aren't available.
In browsers that implement an older specification or do not implement the specification at all, behavior in the presence of concurrent DOM mutation is undefined.
Using npm:
npm install dom-node-iterator
This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec.
// Install support, polluting the global namespace.
require('dom-node-iterator/shim')();
var iter = document.createNodeIterator(document.body);
// Get the best implementation, without polluting the global namespace.
var createNodeIterator = require('dom-node-iterator/polyfill')();
var iter = createNodeIterator.call(document, document.body);
// Get the pure JavaScript implementation.
var createNodeIterator = require('dom-node-iterator/implementation');
var iter = createNodeIterator.call(document, document.body);
See the documentation at the Mozilla Developer Network
for more information about using NodeIterator
.
FAQs
A portable NodeIterator polyfill.
The npm package dom-node-iterator receives a total of 389 weekly downloads. As such, dom-node-iterator popularity was classified as not popular.
We found that dom-node-iterator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.