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

pure3d

v2.4.3

Published

pure3d

Downloads

52

Readme

Build Status

Pure3D

WORK-IN-PROGRESS: There will be breaking changes and what's there is sometimes purposefully broken too ;)

DEMO

Remaining Features

See Issue Tracker

What it is:

  • For DIY renderers - a generic abstraction to make working with WebGL a bit more more fun and simple, without sacrificing any power.
  • Or, batteries included - a GLTF renderer with super easy API surface and functional paradigm.

How it works

See Wiki for more details

  • Generic layer automatically optimizes and skip unnecessary low-level webgl calls.
  • Gltf layer has strong separation of concerns and to make interop with functional frameworks, workers, and wasm a bit more organic.
  • Gltf layer also uses an immutable pipeline throughout, with a diffing thing to automagically handle scene changes
  • Some pure functional helpers to drive transform updates and animations (not forced into render pipeline)
  • Fully exported Typescript definitions

What it probably won't be:

  • A full game engine (bring your own physics, sound, input, particle emitters, etc.)
  • Bleeding edge / state of the art (e.g. GLTF extensions at the proposal stage are not on the radar)
  • An absolute performance beast on the GLTF side (small sacrifices are made to support the immutable approach)

What it hopes to be later:

  • WebGL 2 added functionality / speed gains
  • Supporting more GLTF extensions, lighting and shadow techniques, post-processing filters, etc.
  • Some more simple helpers to make piecing together an engine easier (e.g. get bounding boxes, drawInstanced, etc.)

Story behind it

It's a rite of passage to make your own WebGL renderer while learning it. This is my attempt :D I also wanted something that can work more organically with declarative languages and immutable data

Acknowledgements

  • Khronos, Slack ppls, and all the other hackers out there who have made this stuff possible!