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

@keith-chen/lead-gen-content

v1.0.4

Published

Reusable content templates and types for lead generation websites.

Readme

lead-gen-content

lead-gen-content is an npm package intended to support a broader system of lead generation websites.

The package is meant to provide reusable content-related logic, structures, and utilities that can be shared across multiple sites in the network. Instead of duplicating the same implementation in each project, this package serves as a centralized module that can be versioned, installed, and updated through npm workflows.

Purpose

This package exists to support lead generation website operations by making shared content functionality easier to maintain across properties.

Typical responsibilities may include:

  • content generation helpers
  • reusable content templates or schemas
  • formatting and transformation utilities
  • shared logic used by multiple lead generation sites

How It Fits Into The System

This repository is not intended to represent a complete website on its own. It is a package-level component within a larger ecosystem of lead generation websites and supporting services.

In practice, that means:

  • this package can be published or linked as an npm dependency
  • multiple lead generation sites can consume the same shared logic
  • updates can be made in one place and rolled out across the system

Development

Install dependencies and run the package checks before publishing:

npm install
npm test
npm pack --dry-run

The package compiles TypeScript source files into dist/ and publishes the compiled JavaScript plus declaration files. The prepack script runs the build automatically before npm pack or npm publish.

Installation

npm install lead-gen-content

Usage

import { testTemplate } from "lead-gen-content";
import buymyhousepdx from "lead-gen-content/test-template/buymyhousepdx.com";

console.log(testTemplate.portlandpropertybuyers.home.seoTitle);
console.log(buymyhousepdx.contact);

As the codebase evolves, this package can be expanded with implementation code, exports, build tooling, and release workflows appropriate for the wider lead generation platform.