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

clickup-docs-exporter

v1.0.0

Published

Export ClickUp Docs and Wikis to markdown files with full hierarchy preservation

Downloads

100

Readme

ClickUp Docs Exporter

A CLI tool to export your ClickUp Docs and Wikis to local markdown files, preserving the full page hierarchy.

Features

  • 📁 Preserves hierarchy - Nested pages become nested folders
  • 📝 Clean markdown - Exports content in standard markdown format
  • Fast & reliable - Handles rate limiting and retries automatically
  • 🔒 Secure - Your token stays local, never stored
  • 🎯 Flexible - Export all docs or a single doc

Installation

Using npx (no install required)

npx clickup-docs-exporter --token YOUR_TOKEN --workspace YOUR_WORKSPACE_ID

Global installation

npm install -g clickup-docs-exporter
clickup-docs-exporter --token YOUR_TOKEN --workspace YOUR_WORKSPACE_ID

Usage

Export all docs from a workspace

npx clickup-docs-exporter \
  --token pk_12345678_ABCDEFGHIJKLMNOP \
  --workspace 1234567 \
  --output ./my-docs

Export a single doc

npx clickup-docs-exporter \
  --token pk_12345678_ABCDEFGHIJKLMNOP \
  --workspace 1234567 \
  --doc abc123 \
  --output ./my-docs

Options

| Option | Alias | Required | Description | |--------|-------|----------|-------------| | --token | -t | Yes | Your ClickUp API token | | --workspace | -w | Yes | ClickUp Workspace ID | | --output | -o | No | Output directory (default: ./clickup-docs) | | --doc | -d | No | Export single doc by ID | | --verbose | -v | No | Show detailed progress |

Getting Your ClickUp API Token

  1. Log in to ClickUp
  2. Click your avatar in the upper-right corner and select Settings
  3. In the sidebar, click Apps
  4. Under API Token, click Generate (or Regenerate if you already have one)
  5. Click Copy to copy your token

Your token will look like: pk_12345678_ABCDEFGHIJKLMNOP

📖 For more details, see the official ClickUp Authentication documentation.

Finding Your Workspace ID

  1. Open ClickUp in your browser
  2. Go to any space in your workspace
  3. Look at the URL: https://app.clickup.com/1234567/...
  4. The number after app.clickup.com/ is your Workspace ID

Output Structure

The exporter creates a folder structure that mirrors your ClickUp docs:

my-docs/
├── getting-started/
│   ├── index.md           # Main page content
│   ├── installation.md    # Child page (no sub-pages)
│   └── configuration/
│       ├── index.md       # Page with children
│       ├── basic.md
│       └── advanced.md
├── api-reference/
│   └── index.md
└── changelog.md

Each markdown file includes frontmatter:

---
title: "Getting Started"
exported_at: "2026-01-28T12:00:00.000Z"
---

Your content here...

Use Cases

  • Backup - Keep local copies of your documentation
  • Migration - Move docs to another platform
  • Offline access - Read docs without internet
  • Version control - Track changes with git
  • AI training - Use your docs as context for AI tools

Need a Hosted Solution?

If you want to publish your ClickUp docs as a beautiful, SEO-optimized website without managing infrastructure, check out WikiBeem.

WikiBeem automatically syncs your ClickUp docs and publishes them with:

  • Custom domains
  • SEO optimization
  • Beautiful themes
  • Search functionality
  • Analytics

Requirements

  • Node.js 18 or higher
  • ClickUp API token with read access

License

MIT © Toumi Abderrahmane

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

Links