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 🙏

© 2026 – Pkg Stats / Ryan Hefner

q5

v4.3.0

Published

Beginner friendly graphics powered by WebGPU, optimized for interactive art!

Readme

Visit q5js.org! 💫

q5 was designed to make creative coding fun and accessible for educators, artists, designers, and beginners. 🤝

  • 100x faster than p5.js ⚡️
  • beginner friendly documentation 📚
  • compatible with popular addons, including p5.sound, ml5.js, and q5play 🎮
  • no dependencies, ~140kb minified 📦
  • free and open source 🆓
await Canvas(200);
circle(0, 0, 80);

Documentation

The q5 learn pages are organized into sections with interactive mini-examples.

See the wiki for extended documentation.

Support q5 💙

q5 is open source and anyone can use it for free under the terms of the LGPL. 🎉

We need your support though! If you enjoy using q5, please donate via GitHub Sponsors, ko-fi, or Patreon.

Contributing

Are you interested in writing code for q5.js or improving the q5 ecosystem? Contributions are welcome!

Please report issues or comment on existing issues before working on a pull request. Check out the q5 project planning board.

All contributors must agree to the code of conduct.

Licensing

q5.js was created by Quinton Ashley and contributors. It is free to use and open source licensed under the LGPLv3.

@LingDong- created the original q5xjs library which is Unlicense (public domain) licensed.

p5.js is licensed under the LGPLv2, small sections of p5' code directly copied into q5 are credited below. The rest of q5 is a new implementation of part of the p5 API. APIs are not copyrightable in the United States, as decided by the Supreme Court in the Google v Oracle case. q5 is not affiliated with The Processing Foundation.

Credits

This project aims to continue the legacy of the incredible work done by Ben Fry and Casey Reas on Java Processing, Lauren McCarthy's work on p5.js, and all contributors to these projects.

Code Excerpt Sources

WebGPU MSDF text rendering: https://webgpu.github.io/webgpu-samples/?sample=textRenderingMsdf

WebGPU blendMode: https://webgpufundamentals.org/webgpu/lessons/webgpu-transparency.html

HSLtoRGB: https://stackoverflow.com/a/64090995/3792062

HSBtoHSL: https://stackoverflow.com/a/66469632/3792062

OKLCHtoRGB: https://gist.github.com/dkaraush/65d19d61396f5f3cd8ba7d1b4b3c9432 https://github.com/color-js/color.js/blob/main/src/spaces/oklch.js

A JS Implementation of Ziggurat Algorithm: http://ziggurat.glitch.me/

p5.js Vector.slerp: https://github.com/processing/p5.js/blob/v1.10.0/src/math/p5.Vector.js#L2803

p5.js random: https://github.com/processing/p5.js/blob/1.1.9/src/math/noise.js