Bundler
@remotion/bundler
Bundle Remotion compositions using Webpack
Animation
remotion
ffmpeg
video
react
webpack
player
@remotion/bundler
Animation
javascript
npm
Stars
357
Weekly
1.2M
Open issues
4
Bundle
~25 kB
Installation
npm install @remotion/bundlerCode example
import { motion } from "@remotion/bundler";
export function Example() {
return (
<motion.div
initial={{ opacity: 0, y: 12 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.35 }}
>
<h2>Animated with Bundler</h2>
</motion.div>
);
}Pros & cons
Pros
- Actively maintained by Jonny Burger <jonny@remotion.dev>
- 1.2M weekly downloads. Battle tested
- SEE LICENSE IN LICENSE.md licensed
Considerations
- Adds roughly ~25 kB to your bundle
- Needs client-only rendering in SSR frameworks
- Not supported in React Native
- 4 open issues on GitHub