
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
A simple implementation-less interface for testing code outside of WebGL
A simple implementation-less interface for testing code outside of WebGL.
Requires node.
npm install webgl-mock
Write source code using webgl.
function VertexBuffer( gl, options ) {
options = options || {};
this.gl = gl;
this.type = ( options.type !== undefined ) ? options.type : gl.FLOAT;
this.mode = ( options.mode !== undefined ) ? options.mode : gl.TRIANGLES;
this.buffer = gl.createBuffer();
gl.bindBuffer( gl.ARRAY_BUFFER, this.buffer );
gl.bufferData( gl.ARRAY_BUFFER, options.data || options.size, gl.STATIC_DRAW );
gl.bindBuffer( gl.ARRAY_BUFFER, null );
}
Test source code outside of webgl.
require('webgl-mock');
var canvas = new HTMLCanvasElement( 500, 500 );
var gl = canvas.getContext( 'webgl' );
describe('VertexBuffer', function() {
describe('#constructor()', function() {
it('should default type to gl.FLOAT', function() {
var vb = new VertexBuffer( gl );
assert( vb.type === gl.FLOAT );
});
it('should default mode to gl.TRIANGLES', function() {
var vb = new VertexBuffer( gl );
assert( vb.type === gl.TRIANGLES );
});
});
});
FAQs
A simple implementation-less interface for testing code outside of WebGL
The npm package webgl-mock receives a total of 2,650 weekly downloads. As such, webgl-mock popularity was classified as popular.
We found that webgl-mock 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.