UNPKG

ats-checker

Version:

A simple ATS (Applicant Tracking System) resume and job description matcher

19 lines (11 loc) 499 B
# ATS Checker A Node.js software to calculate ATS compatibility score between a job description and a resume. ## Installation ```bash npm install ats-checker USE const { CheckATSScore } = require("ats-checker"); const JD = "We are looking for a React and Node.js developer skilled in MongoDB and MySQL."; const Resume = "I have experience with React, Node.js, MongoDB, MySQL and cloud deployment."; const score = CheckATSScore(JD, Resume); console.log("ATS Score:", score);