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

@cobodev/devdocs

v1.0.1

Published

A simple way to build technical documentation.

Readme

🚀 DevDocs

devdocs is a lightweight CLI tool for creating, organizing, and maintaining technical documentation in Markdown format — directly from your terminal.

It’s designed for development teams working on complex projects, where documenting issues, features, and common errors needs to be fast, standardized, and collaborative.


🚀 Features

  • Quick setup — initialize a documentation workspace in seconds.
  • 🧩 Predefined templates for issues, features, errors, and guides.
  • 🔁 Automatic index generation for easy navigation.
  • 🪶 Markdown-based — works with any editor (VSCode, Obsidian, etc.).
  • 🧠 Custom placeholders — dynamic values like {{title}} or {{@date}}.
  • 🧱 Structured and extensible — add your own templates and categories.
  • 🧰 CLI-based workflow — no external tools, no vendor lock-in.

📦 Installation

# via npm
npm install -g devdocs

# or via yarn
yarn global add devdocs

🧑‍💻 Usage

Initialize a new documentation workspace

devdocs init

This command creates the basic folder structure (e.g. /features, /issues, /guides, /common_errors) and copies the default Markdown templates.


Create a new document

devdocs new doc

Follow the interactive prompts to choose the type (feature, issue, guide, etc.) and fill in details like title and description.

A new .md file will be generated automatically with all placeholders replaced.


Create a new module

devdocs new module

Follow the interactive prompts to choose name of the new module.

A new folder and template will be generated.


📁 Folder Structure

Example after initialization:

docs/
├── features/
│   ├── new_auth_flow.md
│   └── index.md
├── issues/
│   ├── api_timeout.md
│   └── index.md
├── errors/
│   ├── db_connection_lost.md
│   └── index.md
├── guides/
│   ├── local_setup.md
│   └── ...
└── templates/
    ├── _TEMPLATE_features.md
    ├── _TEMPLATE_issues.md
    ├── _TEMPLATE_errors.md
    └── _TEMPLATE_guides.md

🧩 Placeholders

Templates support two types of placeholders:

| Type | Example | Description | |------|----------|-------------| | Manual | {{title}} | Filled by user input | | Automatic | {{@date}} | Filled automatically (e.g. date, author, etc.) |

Regex ensures placeholders contain only valid identifiers ({{exampleName}} ✅ / {{...}} ❌).


🧑‍🔧 Contributing

Pull requests are welcome!
If you’d like to add new templates, commands, or configuration options, please open an issue or PR.

Before submitting:

npm run lint
npm run build

🧾 License

ISC © 2025 CoboDev


🌟 Roadmap

  • [ ] Command to regenerate indexes automatically
  • [ ] Command to delete modules or docs
  • [ ] Template customization via config
  • [ ] Support for YAML frontmatter
  • [ ] Integration with git hooks for auto-updating docs

🧠 Inspiration

This tool was born from the need to make internal documentation fast, searchable, and standardized for complex enterprise projects — without depending on heavy tools like Confluence or Notion.


💡 “If it’s not documented, it doesn’t exist.” — every senior developer ever.