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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@pranavraut033/ats-checker

v1.0.5

Published

Deterministic, configurable ATS (Applicant Tracking System) compatibility checker with no external dependencies. Analyze resumes, generate scores, and get actionable suggestions.

Readme

ats-checker

npm version npm downloads License: MIT Build Status Tests

A zero-dependency TypeScript library for evaluating resume compatibility with Applicant Tracking Systems (ATS). It parses resumes and job descriptions, calculates a deterministic score from 0 to 100, and provides actionable feedback to improve match rates.

Installation

npm install @pranavraut033/ats-checker

Usage

import { analyzeResume } from "@pranavraut033/ats-checker";

const result = analyzeResume({
  resumeText: `John Doe
Software Engineer with 5 years of experience in JavaScript and React.`,
  jobDescription: `We are looking for a software engineer with JavaScript experience.`
});

console.log(result.score); // 78
console.log(result.breakdown.skills); // 85
console.log(result.suggestions); // ["Add more specific JavaScript frameworks", ...]

LLM (Async) Usage

Note: expandAliases() is deprecated — prefer normalizeSkills() or skillMatched() for normalizing and matching skill names.

For AI-enhanced suggestions while keeping scores deterministic, use the async API:

import { analyzeResumeAsync } from "@pranavraut033/ats-checker";

const myLLMClient = /* implement LLMClient (OpenAI/Anthropic/local) */;

const result = await analyzeResumeAsync({
  resumeText: "...",
  jobDescription: "...",
  llm: {
    client: myLLMClient,
    models: { default: "gpt-4o-mini" },
    limits: { maxCalls: 3, maxTokensPerCall: 1000, maxTotalTokens: 5000 },
    enable: { suggestions: true }
  }
});

console.log(result.score);        // unchanged by LLM
console.log(result.suggestions);  // enhanced wording/context

Note: Passing llm to analyzeResume (sync) will add a warning and skip enhancement. Prefer analyzeResumeAsync for LLM features.

Configuration

Adjust scoring priorities, define skill synonyms, and add custom rules:

const result = analyzeResume({
  resumeText: "...",
  jobDescription: "...",
  config: {
    weights: { skills: 0.4, experience: 0.3, keywords: 0.2, education: 0.1 },
    skillAliases: { "javascript": ["js", "ecmascript"] },
    rules: [
      {
        id: "min-years",
        penalty: 5,
        warning: "Less than 3 years experience",
        condition: (ctx) => (ctx.resume.experienceYears ?? 0) < 3
      },
      {
        id: "require-contact",
        penalty: 2,
        warning: "Add phone/email to contact info",
        condition: (ctx) => !ctx.resume.contactInfo?.phone || !ctx.resume.contactInfo?.email
      }
    ]
  }
});

See Configuration for complete options.

Configuration Defaults

  • Weights: skills 0.3, experience 0.3, keywords 0.25, education 0.15 (normalized)
  • Keyword density: min 0.0025, max 0.04, overusePenalty 5
  • Section penalties: summary 4, experience 10, skills 8, education 6
  • Partial matches: allowPartialMatches: true

All user config is merged via resolveConfig() and weights are normalized to sum to 1.0.

Custom Rules

Add penalties/warnings via rule conditions:

const result = analyzeResume({
  resumeText: "...",
  jobDescription: "...",
  config: {
    rules: [
      {
        id: "min-years",
        penalty: 5,
        warning: "Less than 3 years experience",
        condition: (ctx) => (ctx.resume.experienceYears ?? 0) < 3
      },
      {
        id: "require-contact",
        penalty: 2,
        warning: "Add phone/email to contact info",
        condition: (ctx) => !ctx.resume.contactInfo?.phone || !ctx.resume.contactInfo?.email
      }
    ]
  }
});

See Rules Engine for default rules and context fields.

Features

  • Deterministic scoring based on skills, experience, keywords, and education
  • Detects common ATS issues like missing sections or keyword overuse
  • Customizable scoring weights and validation rules
  • Optional LLM integration for enhanced suggestions
  • Includes a web interface for testing (npm run dev)
  • Live Demo

API

analyzeResume(input: AnalyzeResumeInput): ATSAnalysisResult

Analyzes a resume against a job description.

Input:

  • resumeText: string - The full text of the resume
  • jobDescription: string - The job description text
  • config?: ATSConfig - Optional configuration overrides

Output:

  • score: number - Overall ATS score (0-100)
  • breakdown: ATSBreakdown - Component scores
  • matchedKeywords: string[] - Keywords found in both
  • missingKeywords: string[] - Important keywords not in resume
  • suggestions: string[] - Improvement recommendations
  • warnings: string[] - Issues detected

Development

npm install
npm run build    # Build to dist/
npm test         # Run tests
npm run dev      # Start web UI at http://localhost:3005

Documentation

Live Docs (hosted on GitHub Pages):

  • https://Pranavraut033.github.io/ats-checker/docs/

Local Docs (in repository):

Contributing

Contributions are welcome! Please see the Contributing Guide for details.

License

MIT