linkedin-resume 0.3.2 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -6
- package/dist/cli.mjs +0 -0
- package/dist/linkedin-resume.cjs +3079 -1591
- package/package.json +3 -4
- package/resume.schema.json +5 -9
package/README.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# linkedin-resume
|
|
2
2
|
|
|
3
|
-
A CLI tool that scrapes your LinkedIn profile and generates a professionally styled resume as PDF and
|
|
3
|
+
A CLI tool that scrapes your LinkedIn profile and generates a professionally styled resume as PDF, HTML, and Markdown.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
7
|
- **Automated LinkedIn scraping** - Extracts your profile, work experience, education, projects, skills, recommendations, and languages using Puppeteer.
|
|
8
8
|
- **HTML resume generation** - Renders a clean, LinkedIn-style HTML resume with grouped work experience, skill pills, and recommendation links.
|
|
9
|
+
- **Markdown resume generation** - Generates a readable, well-structured Markdown resume (`resume.md`) for easy editing or sharing.
|
|
9
10
|
- **PDF output** - Converts the HTML resume to PDF via headless Chrome (Windows).
|
|
10
11
|
- **Configurable** - Control output path, extra profiles (e.g. GitHub), and selectively ignore resume sections or specific entries.
|
|
11
12
|
- **Persistent login** - Uses a dedicated Chrome profile so you only need to log in to LinkedIn once.
|
|
@@ -25,8 +26,15 @@ linkedin-resume
|
|
|
25
26
|
# Open the config file in VS Code to customize settings
|
|
26
27
|
linkedin-resume config
|
|
27
28
|
|
|
29
|
+
|
|
28
30
|
# Re-render without scraping again (useful for config tweaks)
|
|
29
31
|
linkedin-resume --render
|
|
32
|
+
|
|
33
|
+
# The following files are generated in your app data directory:
|
|
34
|
+
# - `resume.json` (full resume data, useful for debugging or custom rendering)
|
|
35
|
+
# - `resume.html` (styled HTML)
|
|
36
|
+
# - `resume.pdf` (PDF, if Chrome is available)
|
|
37
|
+
# - `resume.md` (Markdown, for easy editing/sharing)
|
|
30
38
|
```
|
|
31
39
|
|
|
32
40
|
## Usage
|
|
@@ -34,7 +42,7 @@ linkedin-resume --render
|
|
|
34
42
|
```
|
|
35
43
|
Usage: linkedin-resume [options] [command] [outputFilepath]
|
|
36
44
|
|
|
37
|
-
A CLI tool to generate a LinkedIn resume in PDF
|
|
45
|
+
A CLI tool to generate a LinkedIn resume in PDF, HTML, and Markdown formats.
|
|
38
46
|
|
|
39
47
|
Arguments:
|
|
40
48
|
outputFilepath Optional filepath. Defaults to value set in config file.
|
|
@@ -60,7 +68,8 @@ linkedin-resume
|
|
|
60
68
|
# Show the browser window during scraping
|
|
61
69
|
linkedin-resume --no-headless
|
|
62
70
|
|
|
63
|
-
|
|
71
|
+
|
|
72
|
+
# Skip scraping, re-render from previously scraped data (updates HTML, PDF, and Markdown, JSON)
|
|
64
73
|
linkedin-resume --render
|
|
65
74
|
|
|
66
75
|
# Output PDF to a custom path
|
|
@@ -79,7 +88,8 @@ linkedin-resume config
|
|
|
79
88
|
2. **Scrape** - Opens multiple LinkedIn pages in parallel (profile, experience, education, projects, skills, recommendations) and saves the scraped data as JSON files.
|
|
80
89
|
3. **Render JSON** - Merges all scraped data into a single `resume.json` conforming to the [Resume schema](./resume.schema.json).
|
|
81
90
|
4. **Render HTML** - Generates a styled `resume.html` from the resume data, applying any ignore filters from your config.
|
|
82
|
-
5. **Render
|
|
91
|
+
5. **Render Markdown** - Generates a readable `resume.md` for easy editing, sharing, or conversion to other formats.
|
|
92
|
+
6. **Render PDF** - Converts the HTML to PDF using headless Chrome and copies it to your configured output path.
|
|
83
93
|
|
|
84
94
|
## Configuration
|
|
85
95
|
|
|
@@ -100,7 +110,7 @@ linkedin-resume config
|
|
|
100
110
|
"outputFilepath": "$USERPROFILE/Desktop/resume.pdf",
|
|
101
111
|
|
|
102
112
|
// Additional profiles to display in the resume header
|
|
103
|
-
"
|
|
113
|
+
"social": [
|
|
104
114
|
{
|
|
105
115
|
"network": "GitHub",
|
|
106
116
|
"username": "johndoe",
|
|
@@ -133,7 +143,7 @@ Supported fields per section:
|
|
|
133
143
|
| Section | Matchable fields |
|
|
134
144
|
| ----------------- | ---------------------------------------------------------------------------------------- |
|
|
135
145
|
| `work` | `name`, `location`, `position`, `startDate`, `endDate`, `duration`, `summary`, `logoUrl` |
|
|
136
|
-
| `education` | `
|
|
146
|
+
| `education` | `name`, `area`, `studyType`, `startDate`, `endDate`, `logoUrl` |
|
|
137
147
|
| `projects` | `name`, `description`, `startDate`, `endDate`, `entity`, `type`, `url`, `logoUrl` |
|
|
138
148
|
| `skills` | `name` |
|
|
139
149
|
| `languages` | `language`, `fluency` |
|
package/dist/cli.mjs
CHANGED
|
File without changes
|