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

@10x-media/admin-wiki

v0.1.0-beta.6

Published

A living wiki inside the Payload admin panel, with guides attached to the surfaces they explain

Readme

Banner

@10x-media/admin-wiki

A living wiki inside the Payload v3 admin panel. Editors write guides as Payload documents, attach each one to the collections, globals, fields, and blocks it explains, and the admin renders it exactly there: under the field, inside the block, in the document sidebar, above the list table.

npm

Part of the @10x-media Payload plugins collection. In beta: published under the beta dist-tag until a stable 1.0.

Features

  • Guides attached to surfaces: one guide targets any number of collections, globals, field schema paths, and block slugs, plus any custom keys you declare for the screens your config does not describe. Collections, globals, and blocks are picked from what the plugin covers; targets are stored as plain strings, so a guide survives its surface being removed.
  • Scoped to what you document: Payload's own bookkeeping collections are out of the wiki by default, and exclude takes out any other collection, global, or block, surfaces and target pickers alike.
  • Zero-footprint injection: field help arrives as a Description component, block and document help as UI fields. No data, no database columns, nothing in your generated types, and an undocumented admin looks exactly as it did before.
  • One request per session: a compact targets map resolves hundreds of field surfaces with a synchronous lookup. Guide content loads lazily and caches per guide and locale.
  • Write in place: "write this guide" opens a create drawer with the target prefilled, behind a per-browser edit mode so the affordances stay out of the way until wanted.
  • A self-contained editor: callouts, guide-to-guide links, scoped uploads, optional YouTube/Vimeo embeds, and your own blocks, inline blocks and converters. It never inherits the project's rich text configuration.
  • A reading view at /admin/wiki: featured cards, search, filtering by surface, and a table of contents on longer guides.
  • Markdown seeding: seedWiki() writes guides idempotently by slug, converting GitHub alerts to callouts and resolving media and cross-guide references.
  • Orphan detection: a banner lists every guide whose targets no longer resolve against the running config.
  • Localized content and typed translations with per-key overrides via @10x-media/admin-wiki/i18n.

Quick start

pnpm add @10x-media/admin-wiki
// payload.config.ts
import { buildConfig } from 'payload'
import { adminWiki } from '@10x-media/admin-wiki'

export default buildConfig({
  plugins: [
    // Register last: the walker documents the config as it stands when it runs.
    adminWiki({}),
  ],
})

Then run payload generate:importmap, create a Wiki Page, pick a collection under Targets, and publish. The guide appears in that collection's document sidebar and list view.

Documentation

Full documentation at docs.10xmedia.de:

License

MIT. Copyright 10x Media GmbH.