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

gea-lib

v1.0.1

Published

Scaffold a modern, reactive library for GeaJS

Readme

GeaJS Library Scaffolder (gea-lib)

⚡ A fast, flexible, and interactive scaffolding tool to easily bootstrap modern, reactive libraries for GeaJS. With this tool, you can set up a new GeaJS library in seconds with TypeScript or JavaScript, complete with automatic git initialization and dependency installation.

Features

  • 📦 Pre-configured Templates: Ready-to-go templates for both JavaScript (js) and TypeScript (ts).
  • ⚙️ Interactive CLI: Step-by-step prompts to select your project name, language, and initial setup preferences.
  • 🚀 Silent Mode (Non-Interactive): Fast creation using CLI flags to skip prompts.
  • 🛠️ Auto-configuration: Automatic Git initialization and dependency installation using your active package manager (npm, yarn, pnpm, bun).

Usage

You can run this tool remotely using npx (recommended), or run it locally during development.

1. Remote Execution (Recommended)

Since the package is published on npm, you can generate a new GeaJS library anywhere without installing it globally:

# Using npx (runs interactively by default)
npx gea-lib

2. Command Line Options

You can skip or pre-configure choices by passing arguments to the command:

npx gea-lib <project-name> [options]

Available Options:

| Option | Description | | :--- | :--- | | <project-name> | The name of the project/directory to create (e.g., my-awesome-lib). | | --ts / --typescript | Use the TypeScript template. | | --js / --javascript | Use the JavaScript template. | | --git | Automatically initialize a git repository. | | --no-git | Skip initializing a git repository. | | --install | Automatically install dependencies. | | --no-install | Skip installing dependencies. | | -y / --yes | Use default choices for all prompts (creates gea-library in TypeScript with git and install). |

Examples:

Create a TypeScript project with git and installed dependencies silently:

npx gea-lib my-ts-lib -y

Create a JavaScript project and skip dependency installation:

npx gea-lib my-js-lib --js --no-install

3. Local Development & Installation

If you are developing this scaffolder tool locally, you can use these methods:

Run locally:

# In the scaffolder root directory
node ./bin/index.js
# Or:
npm start

Link locally for testing:

# Create a global symlink of the package
npm link

# Run it from anywhere on your machine:
gea-lib my-library

Developing Your New Library

Once your project is created, navigate into the directory and run these commands to start developing:

# Go to the project directory
cd <project-name>

# Start the interactive sandbox demo environment
npm run dev

# Build the library for NPM distribution
npm run build