Skip to content

fresh-standard/fresh-resume-validator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fresh-resume-validator

Latest release Build status (MASTER) Build status (DEV)

Validate résumés and CVs against the FRESH Resume Schema.

Use

Via the Command Line

The easiest way to use the validator is with HackMyResume's validate command, which uses fresh-resume-validator internally.

  1. Install HackMyResume with npm i -g hackmyresume.
  2. Validate the resume with hackmyresume validate resume.json.

Via the API

You can also validate resumes programatically.

  1. Install the fresh-resume-validator library.

    npm i fresh-resume-validator --save
  2. Call the isValid method.

    var validator = require('fresh-resume-validator');
    if ((validator.isValid(myResume)) {
      // do something
    }

License

MIT. See LICENSE.md for details.