![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
This package displays a shader editor over your <canvas>
that lets you modify the GLSL
code in any running WebGL 2.0 app. This makes it easy to perform experiments and diagnostics.
Shaderhud is fairly robust at collecting shaders for viewing purposes, but the shader editing feature only works with certain rendering engines that use uniform blocks (e.g. Filament).
There are many limitations to shader editing due to the fact that WebGL doesn't allow shaderhud
to glean information from a WebGLUniformLocation
object.
To inject shaderhud, first paste this into your browser's developer console:
const script = document.createElement('script');
script.src = '//unpkg.com/shaderhud';
document.head.appendChild(script);
Next you need to activate the widget by calling the shaderhud()
function, passing in your
canvas element and context. Here's an example for a Filament app:
const canvas = document.getElementsByTagName('canvas')[0];
shaderhud(canvas, Filament.ctx);
FAQs
Easily modify WebGL shaders with a canvas HUD
The npm package shaderhud receives a total of 1 weekly downloads. As such, shaderhud popularity was classified as not popular.
We found that shaderhud demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.