
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Simple stand-alone animation / tweening library. Currently works in node or in browsers w/ browserify.
var Animation = require("anymation");
var objectToAnimate = {
x: 40
};
var animation = new Animation({
object: objectToAnimate,
duration: 3000, // 3 seconds
props: {
x: 500
}
};
// Your render loop is up to you
function render() {
animation.update();
// Draw / update what you need to based on objectToAnimate's properties
// ...
requestAnimationFrame(render);
}
render();
Constructor for an Animation. Calling it with the new operator is optional. The animation starts immediately.
... to be continued
FAQs
Simple & easy animation/tweener
The npm package anymation receives a total of 1 weekly downloads. As such, anymation popularity was classified as not popular.
We found that anymation 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.