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

@trullock/dollar

v2.1.0

Published

HTML extensions for DOM selection and manipulation

Downloads

55

Readme

About

Dollar is a DOM querying and manipulation library designed to massively reduce boilerplate syntax.

Selecting elements

When selecting element with Dollar you get a Dollar object back not a NodeList or single HTMLElements, which proxies further usages to the underlying HTMLElements.

This allows the syntax shortcuts to take place, with the caveats noted below.

Selecting elements with $()

This will select 0, 1 or many elements - depending on what .selector matches. It uses querySelectorAll underneath.

const $elements = document.$('.selector')

Note that if no elements are found, $elements is null, not an empty Dollar object or an empty enumerable.

This allows you to do if(!$elements) for seeing if you selected nothing.

Selecting elements with $1()

This will select 0 or 1 elements - depending on what .selector matches. It uses querySelector underneath.

const $singleElementOrNull = document.$1('.selector');

Examples

Setting deep properties on multiple elements

Instead of doing this:

const spans = [...document.querySelectorAll('span')];
spans.forEach(span => span.classList.add('foo'));

With Dollar you just do this:

const $spans = document.$('span');
$spans.classList.add('foo')

Getting property values from multiple elements

Instead of doing this:

const inputs = [...document.querySelectorAll('input')];
const values = inputs.map(input => input.value);

With Dollar you just do this:

const $inputs = document.$('input');
const values = $inputs.value;

Calling methods on multiple elements

Instead of doing this:

const buttons = [...document.querySelectorAll('button')];
buttons.forEach(button => button.addEventListener(e => {}, false));

With Dollar you just do this:

const $buttons = document.$('button');
$buttons.addEventListener(e => {}, false);

Accessing underlying HTMLElements by index

const $inputs = document.$('input');
const input = $inputs[0];

Converting a Dollar object into an array of HTMLElements

const $spans = document.$('span');
const spans = [...$spans];

Selecting descendent elements from a Dollar object

const $sections = document.$('section');
const $allPs = $sections.$('p');

Interceptors

Interceptors are ways of... intercepting getters or setters called on Dollar objects.

Example: Automatically localising type=datetime-local inputs

Say you have an application where you want to set the value of an <input type="datetime-local" /> via javascript using a Date object. You're going to need to convert the date to a local representation manually, because the HTML API sucks for this. Include the below code once in your application:

document.$.intercept('input[type=datetime-local]').value = value => {
	if (!(value instanceof Date))
		return value;

	value.setMinutes(value.getMinutes() - value.getTimezoneOffset());
	return value.toISOString().slice(0, 16);
}

And then when you want to set the value of an input somewhere, you can do it transparently and not have to worry about the conversion every time:

const date = new Date();
date.setTime(xxx); // where xxx is some unlocalised (e.g. UTC) value, perhaps from some API you called
document.$('input[type=datetime-local].example-input').value = date;

Do i have a Dollar or not?

If you're not sure if an object reference is to a Dollar object or not, you can check the __isDollarProxy property.

const iAmTrue = document.$('span').__isDollarProxy;

Caveats

Null comparison

Selecting one or multiple elements with $1('') and $('') respectively will return null if no elements are found.

const $singleElementOrNull = document.$1('.selector');
if(!$singleElementOrNull)
{
	// this will work
}
const $elements = document.$('.selector');
if(!$elements)
{
	// this will also work, if no elements matched
}

If there's a possiblilty you will select no elements but still want to interact deeply, use optional chaining:

const $elements = document.$('.selector');
$elements?.classList.add('awesome');

Equality comparison

This:

document.querySelector('#elem') == document.$('#elem'); // always false

Will always be false. Equality comparison against Dollar objects will always be a variable reference equality, so only the below would be true:

const $foo = document.$('.foo');
$foo == $foo; // true, obviously

However, to compare Dollar objects with themselves or HTMLElements, use the equals() method which supports single and multiple element selectors.

Examples

const $elem = document.$('#elem');
$elem.equals(document.querySelector('#elem')); // true
const $elems = document.$('.elem'); // this selects many things
const $elems2 = document.$('.elem'); // this selects the same many things again as a separate object
$elems.equals($elems2); // true