bluesky-comments-svelte
is a Svelte-based component for embedding Bluesky comment sections seamlessly into your Svelte applications.
This package is inspired by and based on the functionality provided by the Bluesky Comments project created by Cory Zue. It adapts the original idea to work natively within the Svelte ecosystem for better developer experience and integration.
- Native Svelte component for embedding Bluesky comment sections.
- Simple, declarative syntax for easy integration.
- Lightweight and dependency-friendly.
Install the package using npm:
npm install bluesky-comments-svelte
Attaching comments of specific post by link:
<script>
import { CommentSection } from "bluesky-comments-svelte";
// Provide the URI of the Bluesky post you want to display comments for
const uri = "https://bsky.app/profile/emilyliu.me/post/3lbq7dp6k6k2x";
</script>
<CommentSection {uri} />
Automatically attach comments to the most recent post that links to page:
<script>
import { CommentSection } from "bluesky-comments-svelte";
const author = "pdewey.com";
</script>
<CommentSection {author} />
The CommentSection
component accepts the following props:
uri
(string) The URI of the Bluesky post for which comments should be displayed.author
(string) The Bluesky post author username for which posts should be checked for matching URLsopts
(object) -- Optional A JSON object of options that can be passed into the component Currently contains:showCommentsTitle
(Boolean -- default true) that tells the component whether or not to render the "Comments" header.
One and only one should be specified for any given CommentSection component.
If you'd like to contribute or modify this package:
- Clone the repository:
git clone https://github.com/ptdewey/bluesky-comments-svelte.git
- Install dependencies:
npm install
- Run the development server:
npm run dev
This project is licensed under the MIT License.
For questions or support, open an issue on the GitHub repository. Feedback and contributions are highly appreciated!