Skip to content

Instantly share code, notes, and snippets.

View rudiv's full-sized avatar

Rudi Visser rudiv

View GitHub Profile
@rudiv
rudiv / BlueSkyComments.svelte
Last active December 2, 2024 10:22 — forked from emilyliu7321/bluesky-comments.tsx
Integrate Bluesky replies as your blog's comment section in Svelte
<script lang="ts" module>
import { AppBskyFeedDefs, AppBskyFeedPost, type AppBskyFeedGetPostThread } from "@atproto/api";
import type { ThreadViewPost } from "@atproto/api/dist/client/types/app/bsky/feed/defs";
export type CommentsProps = {
did: string;
threadId: string;
};
export type Reply = {
post: {