1npx unframer example-app {projectId}
{projectId} with the short ID shown in the plugin after exporting. The command creates a folder called example-unframer-app with a working React app and installs dependencies automatically.12cd example-unframer-app npm run dev
http://localhost:5173 in your browser. You should see your Framer components rendering as native React.unframer and download your components directly:12npm install unframer react@19 react-dom@19 npx unframer {projectId} --outDir ./src/framer
12345678910import './framer/styles.css' import Hero from './framer/hero' export default function App() { return ( <div> <Hero /> </div> ) }
<StrictMode> from your entry file if you see animation glitches.1npx unframer {projectId} --outDir ./src/framer
--watch to automatically re-export when Framer publishes:1npx unframer {projectId} --outDir ./src/framer --watch