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

feist

v1.0.71

Published

- [x] Add all element types supported in Obsidian to markdown - [x] Add rich link previews - [x] Add RSS - [x] Add robots.txt - [x] AI - [x] Search - [x] Image - [x] Typing - [x] Add sitemap - [x] Make taxonomies linkable in frontmatter (if a corres

Downloads

772

Readme

MVP

  • [x] Add all element types supported in Obsidian to markdown
  • [x] Add rich link previews
  • [x] Add RSS
  • [x] Add robots.txt
    • [x] AI
    • [x] Search
    • [x] Image
  • [x] Typing
  • [x] Add sitemap
  • [x] Make taxonomies linkable in frontmatter (if a corresponding folder exists)
  • [x] Add header metadata (meta tags)
  • [x] CSS handling
  • [x] Favicon handling
  • [x] Docs
  • [x] Build action

V2

  • [x] Fallback homepages
  • [ ] Create post list element (#tags/blue, @tags/blue, ~tags/blue)
  • [x] Better favicon and styles handling
  • [ ] Ignore README files
  • [ ] Add more header metadata
  • [ ] Define folder settings
    • [ ] Title
    • [ ] Breadrumb
  • [x] Define special page properties
    • [x] Title
    • [x] Description
    • [x] Meta image
    • [x] Date
    • [ ] Modified date
    • [ ] Tags
    • [ ] Author/Authors
  • [ ] Make file names kebab-cased for URLs and links
  • [ ] Add hidden routes ($)
  • [ ] Image alt text
  • [ ] Code highlighter
  • [x] Deploy action (Vercel)
  • [ ] Add anchor links for headings
  • [ ] Post TOC
  • [ ] GitHub-style notes
  • [ ] Add in-browser search
  • [x] Figure out how to stop components from remounting on every change
  • [ ] Make RSS optional
  • [ ] Pagination
  • [ ] Demote headings global option

Wish list

  • [ ] Automatic file creation
  • [ ] Image serving and optimization
  • [ ] GUI
  • [ ] More deploy actions
  • [ ] Optional JSON interactivity (ratings, comments, SubPubHub)
  • [ ] Redirects
  • [ ] Advanced markdown
    • [ ] Highlight
    • [ ] Sanitize
    • [ ] Tables
    • [ ] Strike
    • [ ] Task lists
    • [ ] Footnotes
    • [ ] Mermaid
    • [ ] Math
    • [ ] Wikilinks

Ideas

https://github.com/arobase-che/remark-attr https://github.com/wataru-chocola/remark-definition-list https://github.com/FinnRG/remark-mentions https://github.com/remarkjs/remark-toc

  • Docusaurus
  • MkDocs
  • Coolify
  • NodeGui

https://www.nngroup.com/articles/breadcrumb-navigation-useful/ https://www.nngroup.com/articles/url-as-ui/

CSS Frameworks:

  • Open Props
  • Pico
  • Milligram
  • Spectre

Docs

Welcome to Feist! This project is under development.

Feist is a Really Simple Static Site Generator. Write Markdown files, and Feist will generate a website for you. Eventually, you will also be able to write a style.css file to style your website. When complete, Feist will generate:

  • An RSS feed
  • A sitemap
  • Rich link previews (internal and external)
  • Post lists
  • Navigation
  • Optimized images
  • Metadata
  • And more

Each file in Feist is a page. Index pages are called home.md.

.
├── home.md
├── settings.md
├── about.md
└── posts/
    ├── home.md
    ├── red-car.md
    ├── blue-true.md
    └── green-van.md

In the above project, /home.md is the website homepage. about.md is /about, /posts/home.md is the blog homepage, /blog, and /posts/red-car.md is a blog post, /posts/red-car.

Every folder must have an index page. That means that there are two ways to represent a page:

  • /example-page.md
  • /example-page/home.md Both of the above will generate the /example-page URL. You cannot have both files.

At the root of a project, a settings.md file defines global configurations, like your site title. It can have the following properties:

  • title: Website title
  • breadcrumb: The root breadcrumb

Each folder can also have a settings.md file, with the following properties:

  • breadcrumb: The breadcrumb for the folder