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

@fujocoded/astro-ao3-loader

v0.0.4

Published

Allows loading a series of AO3 works for the Astro Content Layer

Downloads

125

Readme

@fujocoded/astro-ao3-loader

Load data from Archive of Our Own to your Astro site.

What is @fujocoded/astro-ao3-loader?

[!WARNING] This is an experimental library with only basic functionality. If you want to help us expand it, you can reach out via GitHub, Fandom Coders, our socials, or [email protected].

If you've never joined an open source project before, this is an excellent first place to contribute!

This library makes it easy to use the Content Loader API and AO3.js to load data from Archive of Our Own to your Astro website.

What can @fujocoded/astro-ao3-loader do?

You can use this library to easily grab data about content hosted on Archive of Our Own to use in your Astro site—however you wish to. ✨

The library includes the following loaders:

| Loader | Description | Data file | | -------------- | -------------------------------------------------------------------------------------------- | ----------------------------- | | worksLoader | Loads data from a set of works hosted on Archive of Our Own. | src/content/ao3/works.yaml | | seriesLoader | Loads data from series hosted on Archive of Our Own. | src/content/ao3/series.yaml |

How to use @fujocoded/astro-ao3-loader

[!TIP] Want to see some examples? Take a look around the examples folder. 👀

Prerequisites

This library requires Astro 5.0.0 or later, and Astro's built-in Content Loader API. Astro 4 isn't currently supported, but if you'd like to use the library on an older version, open an issue to let us know!

Installation

npm install @fujocoded/astro-ao3-loader

Configuration

The configuration steps are the same for each loader. In this example, we'll use the worksLoader to get information from a list of works specified in src/content/ao3/works.yaml.

  1. Set up a content collection in src/content/config.ts that uses your chosen loader.

    import { defineCollection } from "astro:content";
    import { worksLoader } from "@fujocoded/astro-ao3-loader";
    
    export const collections = {
      fanfictions: defineCollection({ loader: worksLoader }),
    };
  2. Create src/content/ao3/works.yaml and add a list of work IDs to the file.

    - 38226814
    - 49238326
    - 59988091
    - 41160522
    - 11728554
    - 12928950
    - 58869805

[!TIP] This file uses the YAML data format to list work IDs. If you're running into issues, check your syntax using one of the many YAML validators out there.

Once configured, you can use the collection created with astro-ao3-loader like you would any other Astro content collection.

---
import { getCollection } from "astro:content";

const fanfictions = await getCollection("fanfictions");
---

<h1>Hello fujin</h1>
<ul>
  {
    fanfictions.map((fic) => {
      if (fic.data.locked) {
        return <li>Locked</li>;
      }
      return (
        <li>
          {fic.data.title} by {fic.data.authors[0].pseud} ({fic.data.rating})
        </li>
      );
    })
  }
</ul>

For a more complete example, you can take a look at our example page.