/ JAVASCRIPT

Json based resume

JSON Resume

JSON Resume is a open source JSON-based resume generator for next generation. It’s a pecfect tool for online developpers resumé.

The open source initiative to create a JSON-based standard for resumes. For developers, by developers.

benefits

  • Simple to install and use
  • Json strucred resume
  • Generate html, pdf
  • Customisable template

Prerequistes

  • Node & NPM

Install

# Install json-resume
$ npm install -g resume-cli

# Base commands
$ resume init
$ resume serve --port 4001 --theme Kendal

Export to HTML, PDF

$ resume export index.html --theme Kendall
$ resume export moncv.pdf --theme flat

Config nginx for serving resume page

Note : It’s possible to use resume serve command for serving the json resume as html page with following command :

$ resume serve --port 4001 --theme Kendal

But personally, I already have an nginx http-server running on my private server. So my tip is to use resume export commande to get my rasume as ìndex.html file located for example at /home/web/resume. Then add the following config to my nginx vhost to serve the resume.

server {
  # ...
  location /resume {
    alias /home/web/resume
  }
}

Demo : My resume

  • https://jsonresume.org
  • https://github.com/jsonresume
  • https://jsonresume.org/themes/
  • http://node-modules.com/search?q=jsonresume-theme-*