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

@hephtal/forge

v1.9.1

Published

HephTal frontend node package to store any heavily reused components across projects

Readme

forge-node

Forge is a modular toolkit of front-end components and helper utilities inspired by Greek mythology. It provides a collection of reusable UI elements and functions designed to speed up development across your projects. The toolkit is organized into several packages (e.g., auto-form, data-table, ui) that can be used individually or as a whole.

Using Forge

You can install forge using npm or yarn. Here’s how to get started:

npm install @hephtal/forge

The css classes do not come bundled, instead you need to add to your tailwind config the following:./node_modules/@hephtal/forge/dist/**/*.{js,ts,jsx,tsx} to the content section of your config. This will tell tailwind in your project to also look at the classes in the forge package, and not just the classes in your project.

// tailwind.config.ts
import type { Config } from 'tailwindcss';

const config = {
  ...
  content: [
    './src/**/*.{ts,tsx}',

    // Add the path to your forge package
    './node_modules/@hephtal/forge/dist/**/*.{js,ts,jsx,tsx}',
  ],
  ...
} satisfies Config;

export default config;

Publishing

When you're ready to publish a new version of any forge package, follow these steps:

Make sure your package builds correctly by running:

npm run build

This will compile your TypeScript code and ensure everything is ready for publishing.

Push changes to your main branch and a GitHub Action will automatically start to make a new release. This will make a new tag and start a MR, which once you merge, it should publish, to both npm publically, and to your private GitHub Package Registry.

If you get Bad Credentials error, check the secret for FORGE_GITHUB_TOKEN in your repo is valid.

Development

During development, you can easily test changes locally without publishing your packages. Here’s how to work with forge locally:

1. Linking Locally with npm link

In your forge project directory, run:

npm link

Then, in the consuming project where you want to test forge, run:

npm link @hephtal/forge

This creates a symbolic link from your global npm modules directory to your local forge package, allowing you to see your changes in real time.

2. Local Testing

After linking, import forge in your consuming project like this:

import { Button } from '@hephtal/forge';

Your consuming project will use the local version of forge, letting you verify that everything works as expected.

3. Unlinking

When you’re done testing, you can unlink the package by running:

npm unlink --no-save @hephtal/forge

With this setup, forge is easy to develop, test locally, and eventually publish to your private registry so that it can be used across multiple projects. Enjoy building with forge!