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

create-instant-docs

v7.0.1

Published

CLI tool to create app with instant-docs framework

Readme

create-instant-docs

Ask DeepWiki

🚀 CLI tool to create app with instant-docs framework

Create a new instant-docs documentation site in seconds! This tool scaffolds a complete documentation framework with multi-language support, versioning, search functionality, and customizable themes.

✨ Features

  • 📚 Multi-language support - Built-in internationalization with dictionary-based content
  • 🎨 Multiple color themes - Choose from 8 pre-built themes (Amazon, Google, YouTube, Reddit, and more)
  • 🔍 Full-text search - Powered by Fuse.js for fast, fuzzy searching
  • 📱 Responsive design - Mobile-first approach with clean sidebar navigation
  • 🔧 Plugin system - Extensible with frontend and backend plugins
  • 📝 Markdown support - Write your docs in Markdown with dynamic content injection

🚀 Quick Start

Using npx

# Create in current directory
npx create-instant-docs

# Create in a new directory
npx create-instant-docs my-docs

Using pnpm

# Create in current directory
pnpm create instant-docs

# Create in a new directory
pnpm create instant-docs my-docs

Using yarn

# Create in current directory
yarn create instant-docs

# Create in a new directory
yarn create instant-docs my-docs

🎯 What You Get

After running the command, you'll have a complete documentation site with:

  • Template structure with versioned content organization
  • Static assets including CSS themes and JavaScript utilities
  • Plugin system for extending functionality
  • Sample content demonstrating advanced Node.js concepts
  • Multi-language setup with English and French examples

📖 Next Steps

Once created, navigate to your project directory and:

cd my-docs  # if you specified a directory name
npm install  # Install dependencies
npm run dev    # Start the development server

🛠️ Project Structure

your-docs/
├── src/
│   └── plugins/          # Frontend & backend plugins
├── static/
│   ├── css/             # Stylesheets and themes
│   └── js/              # JavaScript utilities
└── versions/
    ├── latest/          # Current version content
    └── 2.0/            # Version-specific content

Building & Deployment

The following command will build your documentation site for production:

npm run build

The output will be created regarding the CONTENT_LANGUAGES, BUILD_DIR and LINK_FORMAT variables in the .env file.

📄 License

This project is licensed under the GNU Affero General Public License v3.0.


Get started with instant-docs today and create beautiful, searchable documentation sites in minutes! 🎉

Notes

This CLI tool is designed to scaffold instant-docs documentation projects quickly. The generated project includes a complete framework with multilingual support, theming system, and plugin architecture. The tool copies a comprehensive template that includes sample Node.js documentation content, demonstrating the framework's capabilities for creating professional documentation sites.