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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@anglefeint/astro-theme

v0.2.8

Published

Anglefeint core theme package for Astro

Downloads

725

Readme

@anglefeint/astro-theme

Core package for the Anglefeint Astro theme.

Install

npm install @anglefeint/astro-theme

Upgrade

npm update @anglefeint/astro-theme

Usage in Starter/Site

Use the package exports in your pages/layout wiring, for example:

---
import HomePage from '@anglefeint/astro-theme/layouts/HomePage.astro';
---

<HomePage {...Astro.props} />

For content schema:

export { collections } from '@anglefeint/astro-theme/content-schema';

sourceLinks in blog frontmatter accepts standard http(s) URLs and bare domains such as github.com/anglefeint/astro-theme-anglefeint. Bare domains are normalized to https://... during schema parsing.

Site Config Injection

This package reads site-specific config from alias imports:

  • @anglefeint/site-config/site
  • @anglefeint/site-config/theme
  • @anglefeint/site-config/social
  • @anglefeint/site-i18n/config
  • @anglefeint/site-i18n/messages

In the starter/site project, map these aliases to src/config/* and src/i18n/* in both Vite and TS config.

Giscus comments are configured from site-side theme.comments (core IDs + behavior fields like mapping, inputPosition, theme, and lang). If required core fields are not set, comments are not rendered. When mapping="specific" set term; when mapping="number" set number.

CLI

  • anglefeint-new-post
  • anglefeint-new-page

Examples:

# create one post slug in all default locales
anglefeint-new-post my-first-post

# create post only for selected locales
anglefeint-new-post my-first-post --locales en,fr

# or via environment variable
ANGLEFEINT_LOCALES=en,fr anglefeint-new-post my-first-post

# create a custom page with theme variant
anglefeint-new-page projects --theme base
anglefeint-new-page projects --theme ai
anglefeint-new-page projects --theme cyber
anglefeint-new-page projects --theme hacker
anglefeint-new-page projects --theme matrix

Starter projects can invoke these directly (or wrap them in npm scripts). For most users, #starter is the recommended installation path.