
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
jquery.animated
Advanced tools
Useful helper for Animate.css
. If you wanna use other animations, just include another stylessheet & set custom options.
Set Animate.css
or part of it.
Set jQuery & jQuery.Animated.js.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="jquery.animated.min.js"></script>
// Just init on click and use shake or some another effect
$('#animated1').animated('shake');
// Use with callback
$('#animated2').animated('shake', function () {
alert('Thank you for shake!');
});
// Use with options
$('#animated3').animated({
animatedClass: 'animated',
animationClass: 'shake',
onAnimationEnd: function () {
alert('Thank you for shake!');
}
});
// Also you can reset default global options before init
$.animated.options = {
animatedClass: 'animated', // Base animation class
animationPrefix: '', // Prefix for `animationClass`, it's useful if you use BEM
animationClass: 'shake', // Animation effect class
onAnimationEnd: null // Callback
};
// And simply use with default or custom global options
$('#animated4').animated();
// And with callback
$('#animated5').animated(function () {
alert('Thank you for shake!');
});
Released under the MIT license.
FAQs
Useful helper for Animate.css.
We found that jquery.animated 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 flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.