A starter résumé in FRESH format. This is the résumé emitted by the
HackMyResume new
command.
-
starter-resume.fresh.json. The official FRESH-format starter résumé.
-
starter-resume.jrs.json. The same résumé in JSON Resume 0.0.0 format. Note: JSON Resume doesn't support all FRESH resume sections. This resume contains a subset of the information from the official FRESH version.
In HackMyResume:
hackmyresume new r0.json # Create a FRESH-format resume by default
hackmyresume new r1.json -f FRESH # Create a FRESH-format resume
hackmyresume new r2.json -f JRS # Create a JRS-format resume
In code:
var freshStarterResume = require('fresh-resume-starter').fresh;
var jrsStarterResume = require('fresh-resume-starter').jrs;
console.log( freshStarterResume.name );
// > Slim Shady
MIT. See LICENSE.md for details.