A simple tool which lets you scrape twitter accounts and crosspost them to bluesky accounts! Comes with a CLI and a webapp for managing profiles! Works with images/videos/link embeds/threads.
at main 5 lines 157 B view raw
1import { createRoot } from 'react-dom/client'; 2import App from './App'; 3import './index.css'; 4 5createRoot(document.getElementById('root')!).render(<App />);