
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
transitionize
Advanced tools
Transitionize helps you to create CSS3 transitions dynamically to elements of your choice. This helps in cases where you need different transition properties or transition speed for the same element, but for different events, for example.
The idea came when I needed a simpler way to do that for another project of mine - Switchery, where I had to change some of the properties speed when checking/unchecking the switchery.
<script src="dist/transitionize.js"></script>
$ npm install transitionize
$ component install abpetkov/transitionize
$ bower install transitionize
var elem = document.querySelector('.js-elem');
var prop = { 'key': 'value' };
var init = new Transitionize(elem, prop);
To run the example in this repository, with Browserify already installed, execute the following command:
browserify examples/browserify.js -o examples/bundle.js
You can make as many keys as you want and they will work as long as they are CSS valid properties.
var prop = {
'border': '0.3s'
, 'box-shadow': '0.3s'
, 'text-shadow': '0.8s'
};
If you'd like to specify the transition-timing-function or the transition-delay, do it like so:
var prop = {
'background-color': '0.3s ease-in 1s'
};
If you've decided to go in development mode and tweak all of this a little bit, there are few things you should do.
After you clone the repository, do this in your terminal (NPM required):
$ npm install
Add the following code before the rest:
var Transitionize = require('transitionize');
Make sure you're using the build/build.js file and you're ready.
There are some useful commands you can use.
$ make install - will install Node.js modules, components etc.
$ make build - will create a build file
$ make standalone - will create a standalone and minified files
If you like this and want to see more of my work, share your appreciation by following me in Twitter, GitHub or Dribbble.
The MIT License (MIT)
Copyright (c) 2013 Alexander Petkov
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Create CSS3 transitions dynamically
We found that transitionize 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.