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 🙏

© 2025 – Pkg Stats / Ryan Hefner

chatnav

v1.0.0

Published

LLM-powered chat overlay that can navigate and control any web page via natural language using a simple API key.

Downloads

14

Readme

ChatNav Project

npm version

LLM-powered chat overlay that can navigate and control any web page via natural language using a simple API key.

Table of Contents

Introduction

ChatNav is a lightweight, embeddable chat overlay that gives users natural language control over any website. By integrating ChatNav with a simple API key, you can empower your users to navigate, interact with, and perform actions on your web pages just by typing commands.

This project is part of the FairIntellio ecosystem.

Features

(You can expand this section with key features)

  • Natural Language Control: Navigate and interact with web pages using conversational commands.
  • Easy Integration: Add chat-based navigation to your site with just a few lines of code.
  • LLM-Powered: Leverages the power of large language models to understand user intent.
  • Customizable: Easily extend and adapt to your specific needs.

Technologies Used

  • TypeScript - A strongly typed superset of JavaScript.
  • tsup - A fast and simple bundler for TypeScript libraries.

Getting Started

You can add ChatNav to your project via npm or by using a CDN.

Installation

npm install @your-scope/chatnav

Usage

You can import ChatNav and initialize it in your application's entry point.

import { ChatNav } from '@your-scope/chatnav';

const chatnav = new ChatNav({
  apiKey: 'YOUR_API_KEY_HERE'
});

chatnav.init();

This will typically open the application in your browser at http://localhost:5173.

Project Structure

chatnav/
├── public/                 # Static assets
├── src/                    # Source code
│   ├── components/         # Reusable UI components
│   ├── pages/              # Application pages/routes
│   ├── hooks/              # Custom React hooks
│   ├── services/           # API integration, data fetching
│   ├── styles/             # Global styles
│   ├── utils/              # Utility functions
│   ├── App.tsx             # Main application component
│   └── main.tsx            # Entry point of the application
├── .eslintrc.cjs           # ESLint configuration
├── index.html              # Main HTML file
├── package.json            # Project dependencies and scripts
├── tailwind.config.js      # Tailwind CSS configuration
├── tsconfig.json           # TypeScript configuration
└── vite.config.ts          # Vite configuration

Deployment

(Please provide instructions on how to deploy this application.)

Contributing

Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated. Please see CONTRIBUTING.md for more details.

License

This project is licensed under the MIT License. See the LICENSE file for more details.