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

tiny-query

v0.4.14

Published

TinyQuery is a modern selector library that doesn't do much. 2kb compressed.

Downloads

12

Readme

TinyQuery

Most of the syntactic sugar of jQuery. 2kb compressed.

npm version License Contains

Installation via NPM

npm install tiny-query

Usage via CDN

Include one of the following scripts in your project:

https://unpkg.com/tiny-query@latest/tiny-query.min.js

or alternatively:

https://cdn.jsdelivr.net/npm/tiny-query@latest/tiny-query.min.js

What it does

You can use it as a jQuery replacement, particularly if you only need to target modern browsers.

TinyQuery includes most of the useful parts of jQuery, including:

  • Sizzle replacement (selector engine)
  • Element utilities
  • Effects
  • Events

Why

jQuery is great. It makes the DOM easy to manipulate, despite an unforgiving native API.

But, you ever wonder what it would look like if you started over, and just used modern Javascript?

Well, it's something like 400 lines of code. And you're looking at it.

Examples

$('body').hide()
$('body').find('p').addClass('foo');
$('p').eq(4).fadeOut();
$('#form').on('submit', (e) => {
  e.preventDefault();
  console.log('Submitted!');
});

What's missing

By default, $.ajax is not supported. However, if you first include the reqwest library, it will be included as $.ajax.

https://cdnjs.cloudflare.com/ajax/libs/reqwest/2.0.5/reqwest.min.js

Also, jQuery tends to alias a ton of things for convenience. I'm open to it (via Pull Request), I just haven't implemented a lot of that. ($(s).on('click') vs. $(s).click(), etc.)


https://docs.google.com/document/d/1LPaPA30bLUB_publLIMF0RlhdnPx_ePXm7oW02iiT6o/edit is a good write-up of browser-specific workarounds you get for free when using jQuery.


Also, some more complex behavior may be missing, even when a method is partially supported.

This is a WIP. Feel free to open issues (or Pull Requests!) if you find anything that annoys you.


Thanks!