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

readme-framework

v1.3.7

Published

readME is a modern static document generator framework built with Node.js. It provides a Command Line Interface (CLI) to create, manage, and organize website documentation with ease. The framework is designed to streamline the process of generating static

Readme

ReadME Framework

npm version npm downloads GitHub stars License: MIT find us on facebook

This is a static website generated using the ReadME Framework.

ReadME Document Page Builder 📄

The ReadME Document Page Builder is a powerful tool designed to help you create beautiful, organized, and responsive documentation pages with ease. Whether you're building a project wiki, API documentation, or a personal knowledge base, this tool has got you covered.


Features ✨

  • Markdown Support: Write your documentation in Markdown and let the tool handle the rest.
  • Dynamic Sidebar: Automatically generate a sidebar for easy navigation.
  • Custom Themes: Choose from light, dark, or system themes for your documentation.
  • Responsive Design: Your documentation will look great on all devices, from desktops to mobiles.
  • CLI Integration: Manage your documentation with a simple and intuitive command-line interface.

Installation 🛠️

To get started, clone the repository and install the dependencies:

git clone https://github.com/ronyman-com/readME
cd readME
npm install
ReadMe/
├── bin/ # Command line interface
│ └── readme.js # Main CLI entry point
│
├── src/ # Source code
│    ├── commands/ # CLI command implementations
         ├── create.js # Initialize new documentation project
         ├── addFile.js # Add new documentation file
         ├── addFolder.js # Add new documentation section
         ├── changelog.js # Manage project changelog
         └── build.js # Build static site
│ 
│   ├── config/ # Configuration files
│   ├── env.js # Environment-specific settings
│   └── config.js # Main application configuration
│ 
│   ├── utils/ # Utility functions
         ├── sidebar.js # Sidebar generation/management
         ├── github.js # GitHub integration helpers
         ├── helpers.js # General utility functions
         ├── logger.js # Logging utilities
         └── paths.js # Path resolution utilities

|___ plugins
|       |__inndex.js
│ 
│   |── index.js # Main application entry point
│
├── templates/ # Documentation templates
         └── default/ # Default template package
         ├── assets/ # Static assets
         │     └── images/ # Image assets
         ├── css/
         │     └── theme.css # CSS stylesheet
         ├── js/
         │    └── sidebar.js # Client-side sidebar functionality
         ├── index.md # Main content file
         ├── README.md # Template documentation
         ├── sidebar.json # Navigation configuration
         ├── changelog.md # Changelog template
         └── index.ejs # Main HTML template
│
├── .env # Environment variables
├── .gitignore # Git ignore rules
├── server.js # Development server
├── package.json # Project metadata and dependencies
└── README.md # Project documentation

Custom Templates


You can override any template file by placing it in your project's `templates/` directory. The build system will prioritize these files over the default ones included in the package.

For example, to customize the main template:
1. Create a `templates/` directory in your project
2. Copy the file you want to modify from `node_modules/readme-framework/templates/` to your local `templates/` directory
3. Make your modifications
4. Run the build command - your local version will be used