
Product
Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
@daviddarnes/bluesky-post
Advanced tools
bluesky-post
A Web Component to display Bluesky posts and their metadata.
Demo | Custom template demo | Further reading
General usage example:
<script type="module" src="bluesky-post.js"></script>
<bluesky-post>
<a href="https://bsky.app/profile/darn.es/post/3l7m6ivb6ha2q">
Discuss on Bluesky
</a>
</bluesky-post>
Example using a custom template:
<script type="module" src="bluesky-post.js"></script>
<template id="bluesky-post-template">
<blockquote data-key="content"></blockquote>
</template>
<bluesky-post>
<a href="https://bsky.app/profile/darn.es/post/3l7m6ivb6ha2q">
Discuss on Bluesky
</a>
</bluesky-post>
Example using a more complex custom template:
<script type="module" src="bluesky-post.js"></script>
<template id="bluesky-post-template">
<dl>
<dt>Reposts</dt>
<dd data-key="reblogs_count"></dd>
<dt>Replies</dt>
<dd data-key="replies_count"></dd>
<dt>Favourites</dt>
<dd data-key="favourites_count"></dd>
</dl>
<a data-key="url">
View original post from <img alt="avatar" data-key="account.avatar" />
<strong data-key="account.display_name"></strong> on
<strong data-key="hostname"></strong>
</a>
</template>
<bluesky-post>
<a href="https://bsky.app/profile/darn.es/post/3l7m6ivb6ha2q">
Discuss on Bluesky
</a>
</bluesky-post>
This Web Component allows you to:
data-key="name"
data attributestemplate
attributedata-key
attribute and typical JavaScript key referencing, e.g. data-key="reocrd.text"
You have a few options (choose one of these):
npm install @daviddarnes/bluesky-post
Make sure you include the <script>
in your project (choose one of these):
<!-- Host yourself -->
<script type="module" src="bluesky-post.js"></script>
<!-- 3rd party CDN, not recommended for production use -->
<script
type="module"
src="https://www.unpkg.com/@daviddarnes/bluesky-post@1.0.0/bluesky-post.js"
></script>
<!-- 3rd party CDN, not recommended for production use -->
<script
type="module"
src="https://esm.sh/@daviddarnes/bluesky-post@1.0.0"
></script>
The default template for the component looks like this:
<figure>
<blockquote data-key="record.text"></blockquote>
<figcaption>
<cite>
<a data-key="url">@<span data-key="username"></span></a>
</cite>
<dl>
<dt>Reposts</dt>
<dd data-key="repostCount"></dd>
<dt>Replies</dt>
<dd data-key="replyCount"></dd>
<dt>Likes</dt>
<dd data-key="likeCount"></dd>
</dl>
</figcaption>
</figure>
However you can customise the template by using a <template>
element with an id
of bluesky-post-template
, which will be used for every instance of the component on the page. Here's an example which just exposes the vanity metrics of the Bluesky post as a <dl>
:
<template id="bluesky-post-template">
<dl>
<dt>Reposts</dt>
<dd data-key="repostCount"></dd>
<dt>Replies</dt>
<dd data-key="replyCount"></dd>
<dt>Likes</dt>
<dd data-key="likeCount"></dd>
</dl>
</template>
You can also use different templates on the same page by using the template
attribute to target <template>
elements with a specific id
:
<template id="custom-template">
<a data-key="record.text, url"></a>
</template>
<bluesky-post template="custom-template">
<a href="https://bsky.app/profile/darn.es/post/3l7m6ivb6ha2q">
Discuss on Bluesky
</a>
</bluesky-post>
Data is applied using a data-key
data attribute. The value of this attribute should correspond to a data point within a Bluesky public post API response. The official Bluesky documentation has an example of a status response here.
Note that for <a>
and <img>
elements the value won't be applied to it's content if the string being returned starts with http
and instead will be applied to the href
and src
attributes respectively.
Check out the custom template demo as well as the source code for reference.
With thanks to the following people:
FAQs
A Web Component to display Bluesky posts and their metadata
We found that @daviddarnes/bluesky-post demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.