Validate résumés and CVs against the FRESH Resume Schema.
The easiest way to use the validator is with HackMyResume's validate
command, which uses fresh-resume-validator
internally.
- Install HackMyResume with
npm i -g hackmyresume
. - Validate the resume with
hackmyresume validate resume.json
.
You can also validate resumes programatically.
-
Install the
fresh-resume-validator
library.npm i fresh-resume-validator --save
-
Call the
isValid
method.var validator = require('fresh-resume-validator'); if ((validator.isValid(myResume)) { // do something }
MIT. See LICENSE.md for details.