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

@xpack/docusaurus-plugin-doxygen

v0.4.0

Published

A Docusaurus plugin to integrate Doxygen into a Docusaurus project.

Downloads

50

Readme

docusaurus-plugin-doxygen

A Docusaurus plugin to integrate the Doxygen reference pages into Docusaurus documentation sites.

This project relies on the ability of Doxygen to also generate the output in XML. The plugin parses these XML files and generates MDX files in the /docs/api/ folder.

Doxygen configuration

To enable Doxygen to generate the XML files, enable it in the Doxygen configuration file:

GENERATE_XML= YES

By default, the output is generated in the Doxygen folder, in an xml sub-folder, for example, if the Doxygen folder is located in the website folder, the XML files will be generated in website/doxygen/xml.

Plugin install

To install the plugin in the project website folder:

(cd website; npm install @xpack/docusaurus-plugin-doxygen react-markdown --save-dev)

or, during development:

(cd website; npm link @xpack/docusaurus-plugin-doxygen)

Docusaurus configuration

For Docusaurus to use the plugin, it must be added to docusaurus.config.js

const config: Config = {
  // ...
  plugins: [
    [
      '@xpack/docusaurus-plugin-doxygen',
      {
        doxygenXmlInputFolderPath: 'doxygen/xml',
        verbose: false,
        suggestToDoDescriptions: false
      },
    ],
  ],
};

If the Doxygen folder is located in a different location, update the doxygenXmlInputFolderPath property.

To ease running the conversion, add a npm script to package.json:

  "scripts": {
    "docusaurus": "docusaurus",
    "generate-doxygen": "docusaurus generate-doxygen",
    "start": "docusaurus start",
    ...
  }

To run the conversion, use:

npm run generate-doxygen

Sidebar

The plugin generates a separate sidebar for the Doxygen pages.

To add it to Docusaurus, edit the sidebars.ts file; add the following line in the header part to import the generated file:

import doxygenSidebarItems from './sidebar-category-doxygen.json';

Add a new property in the sidebars object:

const sidebars: SidebarsConfig = {

  docsSidebar: [
    // ...
  ],

  doxygenSidebar: [
    doxygenSidebarItems,
  ],
};

Top menu

The plugin also generates a dropdown menu to be used in the top bar.

To add it to Docusaurus, edit the docusaurus-config.ts file; add the following line in the header part to import the generated file:

import doxygenApiMenu from './docusaurus-config-doxygen-menu-dropdown.json'

Add the doxygenApiMenu to the navbar.items.

Memory usage

For very large sites, it is possible that the node process runs out of memory.

To increase the heap and/or the stack, invoke docusaurus via a command like:

node --max-old-space-size=8192 --stack-size=2048 ./node_modules/.bin/docusaurus generate-doxygen