npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@rebelchris/astro-static-tweet

v0.0.8

Published

This is a open source [Astro](https://astro.build/) component. Astro is a open-source Static Site Generator... But it comes with a bring your own framework approach as well as the option to use components but output fully static websites.

Downloads

11

Readme

Welcome to Astro Static Tweet 👋

This is a open source Astro component. Astro is a open-source Static Site Generator... But it comes with a bring your own framework approach as well as the option to use components but output fully static websites.

So far i'm in ❤️ with Astro.

A small downside I noted when one adds Tweets as embeds to a website, they always pull in JavaScript to render the Tweet. This makes little to no sense, to just get a fancy like count.

That's why I build this plugin. You can input a tweet ID and this plugin will convert it into a static tweet!

The best part? You can even style it 🤫

Installing the plugin

Once you setup your Astro project simply run the following command:

npm i @rebelchris/astro-static-tweet

You can then use the component like this:

---
import { StaticTweet } from '@rebelchris/astro-static-tweet'
---
<StaticTweet id="1359064894377762816" />

Now all that's left is for you to get some Twitter credentials, since this plugin uses the Twitter API to fetch the Tweet.

Follow my guide on getting Twitter credentials here.

Then create a .env file in the root of your project and add the following variables.

TWITTER_API_KEY={API_KEY}
TWITTER_API_SECRET={API_SECRET}
TWITTER_ACCESS_TOKEN={ACCESS_TOKEN}
TWITTER_ACCESS_TOKEN_SECRET={ACCESS_TOKEN_SECRET}

And that's it, you're now ready to go!

Demo

You can find the demo here: Astro static tweet demo

Working on these features

  • [ ] Fix styling
  • [ ] Write style guide
  • [ ] Test all tweet options (media/poll/video/multi image/reaction)
  • [ ] Enable cache option?
  • [ ] You tell me? Create an issue with your wishes