
Research
/Security News
Shai Hulud Strikes Again (v2)
Another wave of Shai-Hulud campaign has hit npm with more than 500 packages and 700+ versions affected.
dom-helpers
Advanced tools
tiny modular DOM lib for ie9+
npm i -S dom-helpers
Mostly just naive wrappers around common DOM API inconsistencies, Cross browser work is minimal and mostly taken from jQuery. This library doesn't do a lot to normalize behavior across browsers, it mostly seeks to provide a common interface, and eliminate the need to write the same damn if (ie9) statements in every project.
For example on() works in all browsers ie9+ but it uses the native event system so actual event oddities will continue to exist. If you need robust cross-browser support, use jQuery. If you are just tired of rewriting:
if (document.addEventListener)
return (node, eventName, handler, capture) =>
node.addEventListener(eventName, handler, capture || false)
else if (document.attachEvent)
return (node, eventName, handler) =>
node.attachEvent('on' + eventName, handler)
over and over again, or you need a ok getComputedStyle polyfill but don't want to include all of jQuery, use this.
dom-helpers does expect certain, polyfillable, es5 features to be present for which you can use es5-shim where needed
The real advantage to this collection is that any method can be required individually, meaning bundlers like webpack will only include the exact methods you use. This is great for environments where jQuery doesn't make sense, such as React where you only occasionally need to do direct DOM manipulation.
All methods are exported as a flat namesapce
var helpers = require('dom-helpers')
var offset = require('dom-helpers/offset')
// style is a function
require('dom-helpers/css')(node, { width: '40px' })
ownerDocument(element): returns the element's document ownerownerWindow(element): returns the element's document windowactiveElement: return focused element safelyquerySelectorAll(element, selector): optimized qsa, uses getElementBy{Id|TagName|ClassName} if it can.contains(container, element)height(element, useClientHeight)width(element, useClientWidth)matches(element, selector)offset(element) -> { top: Number, left: Number, height: Number, width: Number}offsetParent(element): return the parent node that the element is offset fromposition(element, [offsetParent]: return "offset" of the node to its offsetParent, optionally you can specify the offset parent if different than the "real" onescrollTop(element, [value])scrollLeft(element, [value])scrollParent(element)addClass(element, className)removeClass(element, className)hasClass(element, className)toggleClass(element, className)style(element, propName) or style(element, objectOfPropValues)getComputedStyle(element) -> getPropertyValue(name)animate(node, properties, duration, easing, callback) programmatically start css transitionstransitionEnd(node, handler, [duration], [padding]) listens for transition end, and ensures that the handler if called even if the transition fails to fire its end event. Will attempt to read duration from the element, otherwise one can be providedaddEventListener(node, eventName, handler, [options]):removeEventListener(node, eventName, handler, [options]):listen(node, eventName, handler, [options]): wraps addEventlistener and returns a function that calls removeEventListener for youfilter(selector, fn): returns a function handler that only fires when the target matches or is contained in the selector ex: on(list, 'click', filter('li > a', handler))requestAnimationFrame(cb) returns an ID for cancelingcancelAnimationFrame(id)scrollbarSize([recalc]) returns the scrollbar's width size in pixelsscrollTo(element, [scrollParent])6.0.1 (2025-06-20)
fix import extensions in dts files (ca51d93)
feat!: update deps and add export map (#188) (e3c5dd8), closes #188
jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, and animation much simpler with an easy-to-use API that works across a multitude of browsers. Compared to dom-helpers, jQuery is a more comprehensive tool but is also larger in size.
Zepto is a minimalist JavaScript library for modern browsers with a largely jQuery-compatible API. If you use jQuery, you will already be familiar with Zepto. While similar in API to dom-helpers, Zepto focuses on a jQuery-like experience in a smaller package.
Cash is an absurdly small jQuery alternative for modern browsers. It provides jQuery-style syntax for manipulating the DOM, handling events, and making AJAX requests. Cash-dom is more feature-rich than dom-helpers but still aims to be lightweight.
FAQs
tiny modular DOM lib for ie9+
The npm package dom-helpers receives a total of 16,410,945 weekly downloads. As such, dom-helpers popularity was classified as popular.
We found that dom-helpers demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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.

Research
/Security News
Another wave of Shai-Hulud campaign has hit npm with more than 500 packages and 700+ versions affected.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.