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

dom-info

v0.3.1

Published

A jQuery-alternative for retrieving info about rendered DOM nodes.

Downloads

6

Readme

dom-info

version Build Status Coverage Status Dependencies status Dev Dependencies status downloads Maintenance Status license

A jQuery-alternative for retrieving info about rendered DOM nodes.

Background

Most UI frameworks provide a mechanism for maintaining state, so we no longer need to store state in the DOM like we did when all we had was jQuery. Furthermore, with modern UI libraries such as React, we also no longer need to manually update DOM nodes because we can re-render the entire DOM as a function of the updated state.

As a result, DOM libraries like jQuery, zepto.js, and others others feel even more bloated because they are filled with methods we no longer need. The only functions we do need are those that retrieve properties of DOM nodes that are the result of their render in the browser (e.g. dimensions, positions, etc.). These properties cannot be known prior to rendering.

dom-info, derived from various modules in the the open-source UIZE JavaScript Framework, is a lightweight alternative that only provides these utility functions. These functions are separated into individual modules so you can only include the ones you need.

Installation

Install via NPM:

npm install --save dom-info

Use with webpack or browserify:

import * as domnInfo from 'dom-info'; // ES6+
var domnInfo = require('dom-info'); // ES5

As a last resort, you can download dist/dom-info.min.js and include it on your web page via a <script> tag. It will create a global window.domInfo object (or define the module if you are using RequireJS):

<script src="/lib/dom-info.min.js" type="text/javascript"></script>

API Docs

  • getDimensions - Gets the computed pixel dimensions for the specified DOM node, including padding, border, and optionally margin.
  • getStyle - Returns the value of the specified style property (or style properties) for the specified node.
  • supportsStyle - Returns whether or not the specified CSS property is supported in the current browser.

Check out the docs for more examples or try out dom-info in your browser!

Browser support

dom-info has been tested in Internet Explorer 9+, Chrome, Firefox, Safari, Opera and Edge. Some functionality may also work in older browsers, but is unsupported.

Project philosophy

We take the stability of this utility package very seriously. dom-info follows the SemVer standard for versioning. All updates must also keep the library lightweight by providing each piece of functionality in a separate module.

Contributing

Contributions are welcome! See CONTRIBUTING.md for more details.

License

MIT. Copyright (c) 2016 Ben Ilegbodu.