Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
get-canvas-context
Advanced tools
Creates a new HTML5 Canvas Context with the given dimensions and options. Returns null
if not supported.
Supports 'webgl'
, 'webgl2'
and '2d'
, handles vendor prefixing, and runs in Node and the Browser.
npm install get-canvas-context --save
var getContext = require('get-canvas-context')
// create a new 50x50 2D canvas
var ctx = getContext('2d', {
width: 50,
height: 50
})
// add to DOM
document.body.appendChild(ctx.canvas)
// draw to it
ctx.fillRect(0, 0, 50, 50)
Or, WebGL using an existing canvas:
var canvas = document.createElement('canvas')
var gl = getContext('webgl', {
canvas: canvas,
antialias: true
})
if (!gl) {
throw new Error('webgl not supported')
}
ctx = createContext(type, [opt])
Returns a new canvas context for the given type
, a string which is either '2d'
, 'webgl'
or 'webgl2'
. The options:
canvas
- an existing canvas element to re-use rather than creating a new onewidth
- if specified, will set the canvas widthheight
- if specified, will set the canvas height{...contextAttributes}
any other options for the rendering context, like alpha
Handles vendor prefixing for WebGL contexts. Returns null
if we are not in a browser, or if the context is not available, or if there was an error creating the context.
Note: As of the time of writing (Jun 2015), "webgl2"
is only supported through special flags in Chrome Canary and FireFox Nightly.
MIT, see LICENSE.md for details.
FAQs
gets canvas context by name
The npm package get-canvas-context receives a total of 121,704 weekly downloads. As such, get-canvas-context popularity was classified as popular.
We found that get-canvas-context 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 malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.