{"id":13624133,"url":"https://github.com/perminder-klair/resume-parser","last_synced_at":"2025-04-06T07:13:47.273Z","repository":{"id":48257026,"uuid":"117789575","full_name":"perminder-klair/resume-parser","owner":"perminder-klair","description":"A Simple NodeJs library to parse Resume / CV to JSON.","archived":false,"fork":false,"pushed_at":"2022-12-07T09:16:50.000Z","size":310,"stargazers_count":131,"open_issues_count":22,"forks_count":77,"subscribers_count":15,"default_branch":"master","last_synced_at":"2024-12-06T19:37:19.520Z","etag":null,"topics":["cv","resume","resume-analysis","resume-parser"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/perminder-klair.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-01-17T05:38:03.000Z","updated_at":"2024-10-19T01:44:08.000Z","dependencies_parsed_at":"2023-01-23T17:30:29.017Z","dependency_job_id":null,"html_url":"https://github.com/perminder-klair/resume-parser","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/perminder-klair%2Fresume-parser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/perminder-klair%2Fresume-parser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/perminder-klair%2Fresume-parser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/perminder-klair%2Fresume-parser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/perminder-klair","download_url":"https://codeload.github.com/perminder-klair/resume-parser/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247445671,"owners_count":20939958,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cv","resume","resume-analysis","resume-parser"],"created_at":"2024-08-01T21:01:39.138Z","updated_at":"2025-04-06T07:13:47.253Z","avatar_url":"https://github.com/perminder-klair.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# Resume Parser\n\nA Simple NodeJs library to parse Resume / CV to JSON.\n\nThis library parse through CVs / Resumes in the word (.doc or .docx) / RTF / TXT / PDF / HTML format to extract the necessary information in a predefined JSON format. If the CVs / Resumes contain any social media profile links then the solution should also parse the public social profile web-pages and organize the data in JSON format (e.g. Linkedin public profile, Github, etc.)\n\n## Installation\n\n`npm install resume-parser --save`\n\n## Usage\n\n```\nconst ResumeParser = require('resume-parser');\n\n// From file to file\nResumeParser\n  .parseResumeFile('./files/resume.doc', './files/compiled') // input file, output dir\n  .then(file =\u003e {\n    console.log(\"Yay! \" + file);\n  })\n  .catch(error =\u003e {\n    console.error(error);\n  });\n\n// From URL\nResumeParser\n  .parseResumeUrl('http://www.mysite.com/resume.txt') // url\n  .then(data =\u003e {\n    console.log('Yay! ', data);\n  })\n  .catch(error =\u003e {\n    console.error(error);\n  });\n```\n\nAt this moment application will work fine, but! By default it supports only `.TXT` and `.HTML` text formats. For better performance you should install at least support of `.PDF` (and `.DOC`). Here is instructions, how to do it from [textract README](https://github.com/dbashford/textract#requirements) file:\n\n- `PDF` extraction requires `pdftotext` be installed, [link](http://www.foolabs.com/xpdf/download.html)\n- `DOC` extraction requires `catdoc` be installed, [link](http://www.wagner.pp.ru/~vitus/software/catdoc/), unless on OSX in which case textutil (installed by default) is used.\n- `DOCX` extraction requires `unzip` be available (e.g. `sudo apt-get install unzip` for Ubuntu)\n\n\n## Extending\n\nAll 'action' are by building `src/dictionary.js` file. For now it has only basics rules, but it's very flexible (although a bit complicated) and extensible. Just put your rule according to existing and following main principles and enjoy!\n\n## Contributions\n\nMany thanks to [Alexey Lizurchik](https://github.com/likerRr) for this amazing library. \n[https://github.com/likerRr/code4goal-resume-parser](https://github.com/likerRr/code4goal-resume-parser) \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperminder-klair%2Fresume-parser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fperminder-klair%2Fresume-parser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperminder-klair%2Fresume-parser/lists"}