Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
gl-format-compiler-error
Advanced tools
Formats a webgl glsl compiler error. Use in conjunction with glsl-shader-name to include your shader's name in the formatted error string.
var formatCompilerError = require('gl-format-compiler-error');
...
var shader = gl.createShader(type)
gl.shaderSource(shader, src)
gl.compileShader(shader)
if(!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) {
var errLog = gl.getShaderInfoLog(shader)
var fmt = formatCompilerError(errLog, src, type);
console.warn(fmt.long);
throw new Error(fmt.short);
}
yields warning:
Error in vertex shader generic:
13:
14: void main() {
15: bug;
^^^^: 'bug' : undeclared identifier
17: vUV = aUV;
18: vPos = vec3(uModel * vec4(aPosition, 1.0))
19: }
^^^^: '}' : syntax error
and error:
Uncaught Error: Error in vertex shader generic:
ERROR: 0:15: 'bug' : undeclared identifier
ERROR: 0:19: '}' : syntax error
npm install gl-format-compiler-error --save
var formatCompilerError = require('gl-format-compiler-error');
fmt = formatCompilerError(errLog, source, type)
Takes errLog
result from gl.getShaderInfoLog
, the shader source
string, and the type
of shader,
either gl.VERTEX_SHADER
or gl.FRAGMENT_SHADER
. Returns an object that contains the long and short
form of the formatted error:
{
long: "long form error with code snippets",
short: "short form error, similar to the original error log"
}
FAQs
Formats a webgl glsl compiler error.
The npm package gl-format-compiler-error receives a total of 31,576 weekly downloads. As such, gl-format-compiler-error popularity was classified as popular.
We found that gl-format-compiler-error 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.