animejs on a CDN
Copy the tag for animejs 4.5.0. Each provider below carries the url, the flavour it serves and the date it was last fetched.
How this one loads
animejs ships an ES module, so the tag needs type="module" and the library is imported rather than read off a global. A plain script tag fails with a syntax error that blames the file.
What is checked, and when
3 of 3 urls for animejs responded at the last check on 2026-09-03. Every one of them is listed with the answer it gave rather than assumed to be fine.
Licence and source
animejs is published under MIT, and its source is at https://github.com/juliangarnier/anime. JavaScript animation engine
- cdnjs: https://cdnjs.cloudflare.com/ajax/libs/animejs/4.5.0/anime.esm.min.js — verified (HTTP 200)
- jsdelivr: https://cdn.jsdelivr.net/npm/[email protected] — verified (HTTP 200)
- unpkg: https://unpkg.com/[email protected] — verified (HTTP 200)
Questions
Are these URLs actually checked?
Yes, and that is the whole point of this site. Every url here was requested and the answer recorded — 100 of 102 responded successfully at the last check on 2026-09-03. A url we could not verify is labelled unverified rather than presented as working, and a url that failed says so along with how long it has been failing.
Why do some libraries say they need type="module"?
Because a growing number of libraries no longer ship a classic browser build at all. three.js and Vue distribute ES modules, so the script tag needs type="module" and the library has to be imported rather than read off a global. Pasting a module build into a plain script tag fails with a syntax error that names the file and not the real cause.