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

@uuon-foundation/fractal-em-skin-engine

v1.0.0

Published

Fractal EM Skin Engine — Layer 11b · Dermal Field · clouud biological architecture. Three.js 3D surface displacement via EM plane waves, Gaussian beams, spherical harmonics, and Spectral Element Method. tanh soft clamp. 13 algorithms. F=(P,E,M,R,C).

Readme

Fractal EM Skin Engine

UUON Foundation Inc. · Phillip Aguilar Ruiz III clouud Layer 11b — Dermal Field / EM Perimeter · USAL-1.0


Three.js 3D surface displacement engine using electromagnetic field algorithms. 13 EM algorithms across plane waves, Gaussian beams, spherical harmonics, and Spectral Element Method. Soft tanh clamp. Cached base normal displacement. Five geometries. Four render modes. Three themes.

Live: https://uuon-foundation.github.io/fractal-em-skin-engine/ npm: @uuon-foundation/fractal-em-skin-engine Framework: F=(P,E,M,R,C)


Algorithms

| Group | Algorithms | |-------|-----------| | Plane Waves | TEM, TE, TM | | Gaussian Beams | Basic, Hermite-Gauss, Laguerre-Gauss | | Spherical Harmonics | L=1, L=2, L=3 | | Spectral Element | GLL, Gauss-Radau, Discontinuous Galerkin, hp-Refinement, Mortar |

Critical Math

// WRONG — plateau-cliff artifacts
displacement = Math.max(-1, Math.min(1, rawField))

// CORRECT — smooth saturation
displacement = 2 * Math.tanh(rawField / 2)

Displacement pushes vertices along cached base normals — never recomputed from displaced state.

Default Boot State

{ "shape": "box", "algo": "TEM", "density": 96,
  "amplitude": 0.45, "frequency": 3.2, "phase": 0,
  "order": 2, "speed": 0.4, "mode": "points" }

Public API

window.FEMSKIN.getState()          // → full state snapshot
window.FEMSKIN.setState(patch)     // → live parameter injection
window.FEMSKIN.setAlgo('GLL')      // → switch algorithm
window.FEMSKIN.setShape('torus')   // → switch geometry
window.FEMSKIN.setTheme('grey')    // → 'dark' | 'white' | 'grey'

Cross-Engine Wiring (Chat 7)

// BSE entropy → skin deformation magnitude
window.FEMSKIN.setState({ amplitude: bse.entropy })

// Phyllotaxis seed phase → surface pattern origin
window.FEMSKIN.setState({ phase: pse.deltaTheta })

// Propagation activation → EM spatial frequency
window.FEMSKIN.setState({ frequency: propagation.activation * 8 })

Install

npm install @uuon-foundation/fractal-em-skin-engine

Zero dependencies for standalone use — open index.html in any WebGL browser.


Biological Position

clouud Layer 11b — Dermal Field / EM Perimeter

Layer 11 has two components: FSE (11a, 2D wall dynamics) and FEMSKIN (11b, 3D EM surface). Together they form the complete perimeter of the clouud organism. FEMSKIN receives signals from internal layers and renders them as visible electromagnetic surface geometry — making internal organism state readable at the boundary.


USAL-1.0 · Attribution required · AI training prohibited © 2026 Phillip Aguilar Ruiz III / UUON Foundation Inc.