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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@hestia-earth/blog

v0.0.1

Published

Hestia Blog pages

Readme

Hestia Blog

This repository contains the raw content of the blog posts written in Markdown language.

Every file under src/posts will be automatically deploy to https://hestia-earth.gitlab.io/hestia-blog domain.

Example:

  • src/posts/welcome.md will be deployed to https://hestia-earth.gitlab.io/hestia-blog/welcome
  • src/posts/my-first-blog.md will be deployed to https://hestia-earth.gitlab.io/hestia-blog/my-first-blog

Note: only lower chars, dashes (-) and numbers are allowed in the filenames.

Featuring an article

The list of featured articles can be found in the featured.txt file. Each featured article must be on a new line, and must point to the name of the markdown file.

Example:

article1
article2

Writing Guidelines

  1. Create a new file under src/posts and make sure the filename only uses lowercase letters, numbers and dashes.
  2. Start the file with a header level 1 using a single #. Example:
# This is the header

This is the content.

## This is a sub-header

The header level 1 will be automatically used as Title for the Post, so please try to keep it short.

The second line (omitting the blank lines) will be used as abstract.

References or citations

To reference or cite another article, please use the following format:

This article references <cite><a href="https://www.nature.com/articles/nature10452">another article</a></cite>

This will be parsed so it is displayed as a reference, using the content inside the link as the full reference name:

1 another article https://www.nature.com/articles/nature10452

Adding metadata

It is possible to add a list of metadata, using the following format:

/<name of metadata> ~Title~

These metadata must be added at the end of the file, one per line. The list of metadata is:

| Name | Required | Can be added multiple times | | ---- | ---- | ---- | | category | Yes | ❌ | | tag | No | ✅ |

Example:

# This is the title

This is the abstract.

/category ~Hestia for dummies~
/tag ~Hestia~
/tag ~Beginners~

Adding images or videos

To add an image or a video to a post:

  • add the file under the src/assets folder. Note: you can use sub-directories to organise the files.
  • make sure to use a simple name, without special characters. So only letters and numbers, dashes or underscores.
  • in the content of the post, use either
    <img src="/blog/assets/<path to the file>" alt="Text to describe the image" height="auto">
    or to use videos in different formats
    <video width="320" height="240" controls>
      <source src="/blog/assets/<path to the file>.mp4" type="video/mp4">
      <source src="/blog/assets/<path to the file>.ogg" type="video/ogg">
    </video>