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

@akurdyukov/docusaurus-protobuffet-init

v1.0.0

Published

Create Docusaurus projects with Protobuffet preset enabled

Readme

Docusaurus Project Generator with Protobuffet Preset

Visit the landing page for Protobuffet documentation.

Executable project generator based on create-docusaurus. This generator enhances the common template by also initializing the @akurdyukov/docusaurus-protobuffet preset with recommended options and sample fixtures.

See @akurdyukov/docusaurus-protobuffet for details on this preset.

See Docusaurus docs for details on the common template.

Compatibility

| Version | Docusaurus | React | Node.js | |---------|-----------|-------|---------| | 1.x | 3.9+ | 18+ | 18+ | | 0.x | 2.x | 17 | 14+ |

Usage

This package scaffolds a new Docusaurus project with the @akurdyukov/docusaurus-protobuffet preset pre-configured. If you already have an existing Docusaurus project, use @akurdyukov/docusaurus-protobuffet directly instead.

Requirements: Node.js 18+, npm 9+

Registry Setup

This package is published to the GitHub npm registry. Configure npm to use it for the @akurdyukov scope by adding the following to an .npmrc file in your project directory or home directory (~/.npmrc):

@akurdyukov:registry=https://npm.pkg.github.com

If the repository is private, you also need to authenticate. Create a GitHub personal access token with read:packages scope and add it:

//npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN

Quick Start

Run the generator from the parent directory where you want the project created:

npx @akurdyukov/docusaurus-protobuffet-init@1 init <project_name>

This will:

  1. Scaffold a Docusaurus project using create-docusaurus with the classic template
  2. Install @akurdyukov/docusaurus-protobuffet and @easyops-cn/docusaurus-search-local
  3. Copy Protobuffet config, sample fixtures, and landing page templates
  4. Run generate-proto-docs to generate documentation from the sample fixtures

Once complete, start the development server:

cd <project_name>
npm run start

Regenerating Proto Docs

Whenever you update the fileDescriptorsPath file (defaults to ./fixtures/proto_workspace.json), regenerate the documentation:

npx docusaurus generate-proto-docs

See the @akurdyukov/docusaurus-protobuffet CLI documentation for details.

Deployment

This is a standard Docusaurus project. Follow the Docusaurus deployment docs for production builds and hosting.

Configuration

The default setup configures fileDescriptorsPath to ./fixtures/proto_workspace.json. You can override this with your own Protobuf workspace file or update the options passed to @akurdyukov/docusaurus-protobuffet within your docusaurus.config.js file. Please see @akurdyukov/docusaurus-protobuffet documentation for details.

The navbar configuration within docusaurus.config.js points to one of the generated files of the sample fixture. You will need to update this route when using your own Protobuf workspace file.

Contributing

Contributions, issues and feature requests are always welcome!