Introduction
react-tweet
allows you to embed tweets in your React application when using Next.js, Create React App, Vite, and more. This library does not require using the Twitter API. Tweets can be rendered statically, preventing the need to include an iframe and additional client-side JavaScript.
You can see how it in action in react-tweet-next.vercel.app/light/1629307668568633344 (opens in a new tab). Replace the tweet ID in the URL to see other tweets.
This library is fully compatible with React Server Components. Learn more (opens in a new tab).
Installation
Install react-tweet
using your package manager of choice:
pnpm add react-tweet
yarn add react-tweet
npm install react-tweet
Now follow the usage instructions for your framework or builder:
Important: Before going to production, we recommend enabling cache for the Twitter API as server IPs might get rate limited by Twitter.
Choosing a theme
The prefers-color-scheme
(opens in a new tab) CSS media feature is used to select the theme of the tweet.
Toggling theme manually
The closest data-theme
attribute on a parent element can determine the theme of the tweet. You can set it to light
or dark
, like so:
<div data-theme="dark">
<Tweet id="1629307668568633344" />
</div>
Alternatively, a parent with the class light
or dark
will also work:
<div className="dark">
<Tweet id="1629307668568633344" />
</div>
Updating the theme
In CSS Modules, you can use the :global
selector to update the CSS variables used by themes:
.my-class :global(.react-tweet-theme) {
--tweet-body-font-size: 1rem;
}
For Global CSS the usage of :global
is not necessary.
Enabling cache for the Twitter API
Rendering tweets requires making a call to Twitter's syndication API. Getting rate limited by that API is very hard but it's possible if you're relying only on the endpoint we provide for SWR (react-tweet.vercel.app/api/tweet/:id
) as the IPs of the server are making many requests to the syndication API. This also applies to RSC where the API endpoint is not required but the server is still making the request from the same IP.
To prevent this, you can use a db like Redis or Vercel KV (opens in a new tab) to cache the tweets. For example using Vercel KV (opens in a new tab):
import { Suspense } from 'react'
import { TweetSkeleton, EmbeddedTweet, TweetNotFound } from 'react-tweet'
import { fetchTweet, Tweet } from 'react-tweet/api'
import { kv } from '@vercel/kv'
async function getTweet(
id: string,
fetchOptions?: RequestInit
): Promise<Tweet | undefined> {
try {
const { data, tombstone, notFound } = await fetchTweet(id, fetchOptions)
if (data) {
await kv.set(`tweet:${id}`, data)
return data
} else if (tombstone || notFound) {
// remove the tweet from the cache if it has been made private by the author (tombstone)
// or if it no longer exists.
await kv.del(`tweet:${id}`)
}
} catch (error) {
console.error('fetching the tweet failed with:', error)
}
const cachedTweet = await kv.get<Tweet>(`tweet:${id}`)
return cachedTweet ?? undefined
}
const TweetPage = async ({ id }: { id: string }) => {
try {
const tweet = await getTweet(id)
return tweet ? <EmbeddedTweet tweet={tweet} /> : <TweetNotFound />
} catch (error) {
console.error(error)
return <TweetNotFound error={error} />
}
}
const Page = ({ params }: { params: { tweet: string } }) => (
<Suspense fallback={<TweetSkeleton />}>
<TweetPage id={params.tweet} />
</Suspense>
)
export default Page
You can see it working at react-tweet-next.vercel.app/light/vercel-kv/1629307668568633344 (opens in a new tab) (source (opens in a new tab)).
If you're using Next.js then using unstable_cache
works too.