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

anki-apkg-parser

v1.0.1

Published

Nodejs helper for parsing Anki `.apkg` files. You can unpack the deck and get list of notes, cards, media files, models. This library uses `sqlite` as a dependency, so you can make any SQL queries yourself

Downloads

32

Readme

anki-apkg-parser

anki-apkg-parser - nodejs helper for parsing Anki .apkg files. You can unpack the deck and get list of notes, cards, media files, models. This library uses sqlite as a dependency, so you can make any SQL queries yourself;

Installation

npm i anki-apkg-parser

Usage

Basic usage:

    import { Apkg } from 'anki-apkg-parser';

    const deck = 'deck.apkg';

    const deckPath = path.join(__dirname, deck);
    const unpackedFolder = path.join(__dirname, 'unpacked');
    
    // always wrap unpacking code with try/catch
    try {
        // Function "create" runs unpacking the deck and creates Apkg instance;
        const apkg = await Apkg.create(deckPath, unpackedFolder);

        // get JSON mapping of media files in deck
        const media = await apkg.getMedia(); // { '0': 'car.jpg', '1': 'cup.mp3' }
        
        // get sqlite3 database instance
        const db = await apkg.getDb();


        // fetch list of all notes
        const notes = await db.getNotes();

        // fetch colleciton raw
        const collection = await db.getCollection();

        // get deck config
        const config = await db.getDeckConfig();

        // get deck models
        const models = await db.getModels();

        // make raw query
        const result = await db.get('SELECT * FROM col');

    } catch (e) {
        console.log('Fail during unpacking apkg', e);
    }
...

.apkg files are simply ZIP archives. What's inside ?

  • 0, 1, 2 - media files (images, sounds, videos).
  • collection.anki2 - legacy database pre-2.1
  • collection.anki21 - anki 2.1+
  • collection.anki21b - latest db version
  • media - json mapping of media files (see the first one) - {1: 'car.jpg', '2': ...}
  • meta - Meta data, if exists