Install using your package manager of choice to add animare to your project:
npm i animare
yarn add animare
pnpm add animare
add a source map script to your HTML file:
<head> <script type="importmap"> { "imports": { "animare": "https://unpkg.com/animare@latest/lib/esm/index.js", "animare/plugins": "https://unpkg.com/animare@latest/lib/esm/plugins/index.js" } } </script></head> <!-- HTML content --> <script type="module"> import animare from 'animare'; import { ease } from 'animare/plugins'; // use animare</script>
Aaaaand, you’re done! That was fast. 🐇