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

abc-branch

v0.0.4

Published

Branch package for the repo

Readme

ABC Branch Package

Package for handling branch tests in the ABC system, specifically designed for specialized test scenarios like ASVAB branch tests.

📦 Installation

pnpm add abc-branch

🚀 Key Features

1. Branch Test Generation

  • Generate specialized branch tests for different applications
  • Support for ASVAB and other military branch tests
  • Configurable test parameters and question distribution

2. Question Management

  • Fetch questions for specific topics
  • Handle question exclusion and filtering
  • Generate random negative IDs for test instances

3. Test Data Processing

  • Create new branch test instances
  • Process test data with proper structure
  • Handle test metadata and configuration

📚 API Reference

Core Functions

generateBranchTest(options)

Generate a complete branch test with questions and configuration.

import { generateBranchTest } from "abc-branch";

const branchTest = await generateBranchTest(
  topics: ITopic[],
  listQ: IQuestionCore[],
  excludedQuestions: number[],
  branch: {
    id: number;
    title: string;
    name: string;
  },
  appShortName: string
);

Parameters:

  • topics - Array of topics for the test
  • listQ - List of available questions
  • excludedQuestions - Questions to exclude from the test
  • branch - Branch configuration object
  • appShortName - Short name of the application

Returns:

  • Complete branch test object with questions, timing, and configuration

handleGetBranchTest(options)

Handle branch test retrieval and processing.

import { handleGetBranchTest } from "abc-branch";

const result = await handleGetBranchTest({
  topics: ITopic[],
  questions: IQuestion[],
  appShortName: string
});

createNewBranchTest(options)

Create a new branch test instance.

import { createNewBranchTest } from "abc-branch";

const newTest = await createNewBranchTest({
  topics: ITopic[],
  questions: IQuestion[],
  appShortName: string
});

fetchQuestionsForTopics(options)

Fetch questions for specific topics with advanced filtering.

import { fetchQuestionsForTopics } from "abc-branch";

const questions = await fetchQuestionsForTopics({
  selectListTopic: ITopic[],
  countQuestionTopic: number,
  remainderQuestionTopic: number,
  excludeListID: number[],
  target: number,
  questions: IQuestionCore[]
});

Data Export

parsedData

Pre-configured branch test data for development and testing.

import { parsedData } from "abc-branch";

// Use pre-configured test data
const testData = parsedData;

🧪 Testing

# Run tests
pnpm test

# Run tests with coverage
pnpm test:coverage

# Run tests once
pnpm test:run

🔧 Development

# Build package
pnpm build

# Development mode
pnpm dev

# Clean dist
pnpm clean

📦 Dependencies

Production Dependencies

  • abc-constants - Constants and configuration
  • abc-core - Core utilities and functions
  • abc-model - Data models and types

Development Dependencies

  • @types/node - Node.js type definitions
  • vitest - Testing framework
  • @vitest/coverage-v8 - Coverage reporting
  • jsdom - DOM environment for tests

🎯 Use Cases

ASVAB Branch Tests

  • Marine ASVAB Practice Test
  • Coast Guard ASVAB Test
  • Army ASVAB Test
  • Navy ASVAB Test

Test Configuration

  • 135 total questions per test
  • 135 minutes duration
  • 70% passing threshold
  • Multiple topic coverage

📄 License

MIT