ats-checker
v1.0.0
Published
A simple ATS (Applicant Tracking System) resume and job description matcher
Maintainers
Readme
ATS Checker
A Node.js software to calculate ATS compatibility score between a job description and a resume.
Installation
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);
