@hkamran/ao3.js
TypeScript icon, indicating that this package has built-in type declarations

0.14.0-1 • Public • Published

AO3.js

AO3.js logo

Scrapes data from ao3.org. Now with Types™.

GitHub branch checks state GitHub Gitpod Ready-to-Code Fandom Coders badge

What it is

Fetch data from AO3 straight to your own JavaScript (or TypeScript) server.

How to use it

With yarn

yarn install @bobaboard/ao3.js

or npm

npm install @bobaboard/ao3.js

Then go to town on your JavaScript (or TypeScript) files

import { getTag } from "@bobaboard/ao3.js";

const tag = await getTag({
  tagName: "Ever Given Container Ship (Anthropomorphic)",
});

Further explanation of AO3.js works and suggestions for how to add to it can be found in this comment. Also consider taking a look at TypeScript types.

A note about CORS

This library is meant to be used as part of a NodeJS application and run on a server. If you try to run it as part of a browser application, you'll run into an error about Cross-Origin Resource Sharing (CORS). In short—for your protection—browsers block data requests from a website to another, unless the destination website specifically allows such requests to be made. AO3 doesn't.

If you want to run a browser application written with this library, users will need a browser extension to allow CORS requests, like this one for Chrome.

Difference between this and the Python library

JavaScript vs Python aside, this is a newer library that is being actively developed, and is not feature complete. If you'd like for us to prioritize a feature, please open an issue.

Documentation

AO3.js uses axios to fetch the HTML making up an AO3 page and cheerio to make it a DOM tree for our goals. For an introduction to this kind of scraping, see here.

For the rest of the owl, you can reach us through our Issues tab, or at Fandom Coders.

Volunteering

...for fun and zero profit!

The Ideal Volunteer™

You.

The Ideal Volunteer™, jokes aside

AO3.js is a great entry point into JavaScript (or TypeScript) programming for inexperienced and experienced developers alike. The library itself is pretty straightforward, so you can get a good overview of the How and Why™ without a lot of additional complexity.

How to add more data to scrape

The best way to get to work on AO3.js is to choose a new set of data to scrape.

Choose your data

To identify what we're missing (and tour the codebase as a bonus):

  1. Take a look at our TypeScript types. If the data you seek is not there, we most likely can't scrape it (yet).
  2. See if there's already an open issue for the type of data you seek.
  3. See if we're aready scraping the page the data resides in.

Congratulations, you now have your first contribution carved for you!

Contribution path

Once you've chosen the type of data, it's time to define its shape.

  1. If there's already an open issue describing the TypeScript type of the data you want to add, let us know you intend to implement the feature.
  2. Submit a PR with the new TypeScript type you intend to implement under types/entities.ts, so we can review the API together. Alternatively, you can open a new issue to discuss beforehand.

If you don't know what any of this means, open a new issue anyway and let us help you through the process.

Other contributions we're seeking

Some ideas off the top of my head:

  • Set up our release process
  • Set up linting/styling and all the bell and whistles that make open source projects cool
  • Autogenerate our documentation from TypeScript types
  • Teach us all how to do semantic releases.

Honestly, this library is your oyster. Just open an issue, and let's roll!

Readme

Keywords

none

Package Sidebar

Install

npm i @hkamran/ao3.js

Weekly Downloads

1

Version

0.14.0-1

License

MIT

Unpacked Size

73.7 kB

Total Files

12

Last publish

Collaborators

  • hkamran