
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
Animation, animates from 0 to 1 in a specific time with a defined acceleration (easing) function
I started this project in 2012. Now I have completely rewritten the code.
in your terminal
yarn add zero2one
# or
npm add zero2one
# or
pnpm add zero2one
html element
<div id="demo"></div>
javascript
import Zero2One from "zero2one";
const demo = document.getElementById("demo");
if (demo) {
const z2o = new Zero2One();
const start = 1900;
const end = 2023;
const duration = 2000;
const delta = end - start;
z2o.start(duration, 'easeIn', (progress) => {
demo.innerText = start + delta * progress << 0;
});
}
Distributed under the MIT License. See LICENSE.txt for more information.
Wolfgang Jungmayer - lemon3.at
Project Link: https://github.com/lemon3/zero2one
v0.1.4
FAQs
Animation, animates from 0 to 1 in a specific time with a defined acceleration (easing) function
We found that zero2one demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.