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.
backbone.konvaview
Advanced tools
Special Backbone View for canvas via KonvaJS library.
Example Live preview:
var MyView = Backbone.KonvaView.extend({
// build KonvaJS object, then return it.
initialize : function(params) {
this.layer = params.layer;
},
el : function(){
var rect = new Konva.Rect({
x : 100,
y : 100,
width : 50,
height : 50,
fill : 'green',
id : 'rect'
});
var circle = new Konva.Circle({
x : 200,
y : 100,
radius : 50,
fill : 'red',
name : 'circle'
});
var group = new Konva.Group();
group.add(rect).add(circle);
return group;
},
// setup events
events : {
'click #rect' : function(){
console.log("on rectangle clicked");
},
'mouseover .circle' : 'onMouseOverCircle'
},
onMouseOverCircle : function(){
console.log('Mouse is over circle');
},
render : function(){
// this.el - cached KonvaJS object.
this.layer.add(this.el);
this.layer.draw();
}
});
var stage = new Konva.Stage({
container : 'container',
width : 300,
height : 300
});
var layer = new Konva.Layer();
stage.add(layer);
view = new MyView({layer:layer});
view.render();
FAQs
Special Backbone View for canvas via KonvaJS
The npm package backbone.konvaview receives a total of 2 weekly downloads. As such, backbone.konvaview popularity was classified as not popular.
We found that backbone.konvaview 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.