resume-pdf-to-json

0.1.4 • Public • Published

resume-pdf-to-json

A Node module that parses a LinkedIn Resume PDF and returns a JSON Object and/or outputs a JSON file.

LinkedIn Resume's are available on your profile under View Profile AsSave to PDF

Installation

npm install resume-pdf-to-json --save-dev

Usage

Return JSON

 
var resumePdfToJson = require('resume-pdf-to-json');
 
var path = 'data/[FirstLast].pdf';
 
return resumePdfToJson(path)
    .then(function(data) {
        return {
            'resume': data,
        };
    });
 

Return JSON + Output JSON File

 
var resumePdfToJson = require('resume-pdf-to-json');
 
var path = 'data/[FirstLast].pdf';
var output = 'data/outputname.json';
 
return resumePdfToJson(path, {'output': output})
    .then(function(data) {
        return {
            'resume': data,
        };
    });
 

Support

There are multiple sections of the LinkedIn PDF resume output, however, not all have been tested. The following sections have been accomodated for;

  • Summary
  • Experience
  • Volunteer Experience
  • Skills & Expertise
  • Education
  • [number] person has recommended [name]
  • [number] people have recommended [name]

Support for additional sections may be added in the future.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.4
    64
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.4
    64
  • 0.1.3
    0
  • 0.1.2
    0
  • 0.1.1
    0
  • 1.0.0
    0

Package Sidebar

Install

npm i resume-pdf-to-json

Weekly Downloads

47

Version

0.1.4

License

MIT

Last publish

Collaborators

  • devowhippit