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

@examplary/qti

v1.10.0

Published

Utilities to generate and parse QTI 3.0 and 2.1 assessment packages.

Readme

@examplary/qti

npm version CI License: MIT

TypeScript utilities for generating and parsing QTI 3.0 and 2.1 assessment packages, including IMS content package manifests and QTI test/item XML.

Built and maintained by Examplary AI, the AI-powered test and practice platform.

Features

  • Build IMS Content Packages containing QTI tests and items
  • High-level, typed builders for items, tests, sections, interactions and response processing
  • Parse QTI packages (ZIP files) and XML strings
  • Supports both QTI 3.0 (default) and QTI 2.1, with automatic version detection on parse

Installation

npm install @examplary/qti
# or
yarn add @examplary/qti

Usage

Building QTI assessments

By default, packages are created in QTI 3.0 format:

import {
  QtiTest,
  QtiItem,
  ImsPackage,
  TextEntryInteraction,
  ResponseProcessingTemplate,
} from "@examplary/qti";

// Build a test with one question
const test = new QtiTest({
  identifier: "my-test",
  title: "My Test",
  language: "en",
});

const item = new QtiItem({
  identifier: "item-1",
  title: "Sample Question",
});

item.addResponseDeclaration({
  identifier: "RESPONSE",
  correctResponse: ["4"],
});

item.addItemBodyFromHtml("<p>What is 2 + 2?</p>");
item.addInteraction(
  new TextEntryInteraction({ responseIdentifier: "RESPONSE" }),
);

item.addResponseProcessing(ResponseProcessingTemplate.MatchCorrect);

item.addToTest(test);

// Create a package
const pkg = new ImsPackage({
  identifier: "my-package",
  title: "My Package",
  language: "en",
});

item.addToPackage(pkg);
test.addToPackage(pkg);

// Get the package as a ZIP
const zip = await pkg.generateZip();

Creating QTI 2.1 packages

To create a QTI 2.1 package instead, specify the version when creating the package:

import { ImsPackage, QtiVersion } from "@examplary/qti";

const pkg = new ImsPackage({
  identifier: "my-package",
  title: "My Package",
  language: "en",
  version: QtiVersion.v2p1,
});

// Items and tests added to this package will automatically
// generate QTI 2.1 compliant XML
item.addToPackage(pkg);
test.addToPackage(pkg);

You can also generate XML in a specific version directly:

const qti21Xml = item.buildXml({ version: QtiVersion.v2p1 });
const qti30Xml = item.buildXml({ version: QtiVersion.v3p0 }); // default

Parsing QTI assessments

The library supports parsing both QTI 3.0 and 2.1 packages. The version is auto-detected:

import {
  QtiItem,
  ImsPackage,
  ImsManifestResourceType,
  QtiVersion,
} from "@examplary/qti";
import { readFile } from "fs/promises";

const contents = await readFile("./example-qti-package.zip");
const pkg = await ImsPackage.fromZip(contents);

console.log("Package version:", pkg.version); // QtiVersion.v3p0 or QtiVersion.v2p1

const itemResources = pkg.manifest.getResourcesOfType(
  pkg.version === QtiVersion.v2p1
    ? ImsManifestResourceType.imsqti_item_xmlv2p1
    : ImsManifestResourceType.imsqti_item_xmlv3p0,
);

for (const resource of itemResources) {
  const xml = await pkg.getResourceContentsString(resource.identifier);
  const item = QtiItem.fromXmlString(xml!); // auto-detects version

  console.log("Question title:", item.title);
  console.log("Interactions:", item.getInteractions());
}

Development

corepack enable
yarn install
yarn test
yarn build

See CONTRIBUTING.md for more details.

License

MIT © Examplary AI

Some test fixtures under tests/stubs/ are derived from the 1EdTech QTI examples; see tests/stubs/LICENSE.md for attribution.