@jsonresume/sample-data 0.2.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/LICENSE +21 -0
- package/complete-resume.json +288 -0
- package/index.js +37 -0
- package/package.json +39 -0
- package/resume-sample.json +206 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2014-2026 JSON Resume contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
{
|
|
2
|
+
"basics": {
|
|
3
|
+
"name": "Jane Developer",
|
|
4
|
+
"label": "Full Stack Software Engineer",
|
|
5
|
+
"image": "https://avatars.githubusercontent.com/u/1?v=4",
|
|
6
|
+
"email": "jane.developer@example.com",
|
|
7
|
+
"phone": "(555) 123-4567",
|
|
8
|
+
"url": "https://janedeveloper.com",
|
|
9
|
+
"summary": "Passionate software engineer with 5+ years of experience building scalable web applications. Specialized in React, Node.js, and cloud architecture. Love solving complex problems and mentoring junior developers.",
|
|
10
|
+
"location": {
|
|
11
|
+
"address": "123 Tech Street",
|
|
12
|
+
"postalCode": "94102",
|
|
13
|
+
"city": "San Francisco",
|
|
14
|
+
"countryCode": "US",
|
|
15
|
+
"region": "California"
|
|
16
|
+
},
|
|
17
|
+
"profiles": [
|
|
18
|
+
{
|
|
19
|
+
"network": "GitHub",
|
|
20
|
+
"username": "janedev",
|
|
21
|
+
"url": "https://github.com/janedev"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"network": "LinkedIn",
|
|
25
|
+
"username": "janedeveloper",
|
|
26
|
+
"url": "https://linkedin.com/in/janedeveloper"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"network": "Twitter",
|
|
30
|
+
"username": "janedev",
|
|
31
|
+
"url": "https://twitter.com/janedev"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
"work": [
|
|
36
|
+
{
|
|
37
|
+
"name": "TechCorp Inc",
|
|
38
|
+
"position": "Senior Software Engineer",
|
|
39
|
+
"url": "https://techcorp.com",
|
|
40
|
+
"startDate": "2021-03-01",
|
|
41
|
+
"summary": "Lead development of microservices architecture serving 10M+ users. Mentored team of 5 junior engineers and improved deployment pipeline reducing release time by 60%.",
|
|
42
|
+
"highlights": [
|
|
43
|
+
"Architected and implemented new microservices platform using Node.js and Kubernetes",
|
|
44
|
+
"Reduced API response time by 40% through caching and database optimization",
|
|
45
|
+
"Led migration from monolith to microservices, improving system reliability to 99.9% uptime",
|
|
46
|
+
"Implemented CI/CD pipeline using GitHub Actions, reducing deployment time from 2 hours to 15 minutes"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "StartupXYZ",
|
|
51
|
+
"position": "Full Stack Developer",
|
|
52
|
+
"url": "https://startupxyz.com",
|
|
53
|
+
"startDate": "2019-06-01",
|
|
54
|
+
"endDate": "2021-02-28",
|
|
55
|
+
"summary": "Built customer-facing web applications from scratch using React and Node.js. Worked directly with founders to define product roadmap and technical architecture.",
|
|
56
|
+
"highlights": [
|
|
57
|
+
"Developed MVP that acquired 50,000 users in first 6 months",
|
|
58
|
+
"Built real-time collaboration features using WebSockets and Redis",
|
|
59
|
+
"Implemented authentication system supporting OAuth, SSO, and 2FA",
|
|
60
|
+
"Optimized bundle size reducing initial load time by 50%"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "Digital Agency Co",
|
|
65
|
+
"position": "Junior Web Developer",
|
|
66
|
+
"url": "https://digitalagency.com",
|
|
67
|
+
"startDate": "2018-01-15",
|
|
68
|
+
"endDate": "2019-05-31",
|
|
69
|
+
"summary": "Developed responsive websites for clients using modern frontend technologies. Collaborated with designers to implement pixel-perfect interfaces.",
|
|
70
|
+
"highlights": [
|
|
71
|
+
"Built 15+ client websites using React, Vue.js, and WordPress",
|
|
72
|
+
"Implemented responsive designs achieving 100% mobile compatibility",
|
|
73
|
+
"Improved website performance scores to 95+ on Lighthouse",
|
|
74
|
+
"Trained team on modern JavaScript and component-based architecture"
|
|
75
|
+
]
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
"volunteer": [
|
|
79
|
+
{
|
|
80
|
+
"organization": "Code for America",
|
|
81
|
+
"position": "Volunteer Software Engineer",
|
|
82
|
+
"url": "https://codeforamerica.org",
|
|
83
|
+
"startDate": "2020-01-01",
|
|
84
|
+
"endDate": "2021-12-31",
|
|
85
|
+
"summary": "Built civic technology tools to improve access to public services for underserved communities.",
|
|
86
|
+
"highlights": [
|
|
87
|
+
"Developed an open-source benefits eligibility screener used by 3 city governments",
|
|
88
|
+
"Mentored 10+ first-time contributors during quarterly hackathons"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"organization": "Girls Who Code",
|
|
93
|
+
"position": "Workshop Facilitator",
|
|
94
|
+
"url": "https://girlswhocode.com",
|
|
95
|
+
"startDate": "2019-09-01",
|
|
96
|
+
"endDate": "2020-06-30",
|
|
97
|
+
"summary": "Taught introductory programming to high school students.",
|
|
98
|
+
"highlights": [
|
|
99
|
+
"Ran weekly coding workshops for a cohort of 25 students",
|
|
100
|
+
"Designed a beginner-friendly curriculum covering HTML, CSS, and JavaScript"
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"education": [
|
|
105
|
+
{
|
|
106
|
+
"institution": "University of California, Berkeley",
|
|
107
|
+
"url": "https://berkeley.edu",
|
|
108
|
+
"area": "Computer Science",
|
|
109
|
+
"studyType": "Bachelor of Science",
|
|
110
|
+
"startDate": "2014-09-01",
|
|
111
|
+
"endDate": "2018-05-15",
|
|
112
|
+
"score": "3.8",
|
|
113
|
+
"courses": [
|
|
114
|
+
"Data Structures and Algorithms",
|
|
115
|
+
"Database Systems",
|
|
116
|
+
"Web Development",
|
|
117
|
+
"Machine Learning"
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"institution": "Stanford University",
|
|
122
|
+
"url": "https://stanford.edu",
|
|
123
|
+
"area": "Human-Computer Interaction",
|
|
124
|
+
"studyType": "Master of Science",
|
|
125
|
+
"startDate": "2018-09-01",
|
|
126
|
+
"endDate": "2020-06-15",
|
|
127
|
+
"score": "3.9",
|
|
128
|
+
"courses": [
|
|
129
|
+
"Interaction Design",
|
|
130
|
+
"Accessibility Engineering",
|
|
131
|
+
"Distributed Systems"
|
|
132
|
+
]
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"awards": [
|
|
136
|
+
{
|
|
137
|
+
"title": "Top Contributor Award",
|
|
138
|
+
"date": "2023-12-01",
|
|
139
|
+
"awarder": "GitHub",
|
|
140
|
+
"summary": "Recognized as top contributor to open source projects in 2023"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"title": "Hackathon Winner",
|
|
144
|
+
"date": "2022-08-15",
|
|
145
|
+
"awarder": "TechConf 2022",
|
|
146
|
+
"summary": "First place winner for building innovative accessibility tool"
|
|
147
|
+
}
|
|
148
|
+
],
|
|
149
|
+
"certificates": [
|
|
150
|
+
{
|
|
151
|
+
"name": "AWS Certified Solutions Architect - Professional",
|
|
152
|
+
"date": "2023-04-10",
|
|
153
|
+
"issuer": "Amazon Web Services",
|
|
154
|
+
"url": "https://aws.amazon.com/certification/certified-solutions-architect-professional/"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "Certified Kubernetes Administrator",
|
|
158
|
+
"date": "2022-11-22",
|
|
159
|
+
"issuer": "Cloud Native Computing Foundation",
|
|
160
|
+
"url": "https://www.cncf.io/certification/cka/"
|
|
161
|
+
}
|
|
162
|
+
],
|
|
163
|
+
"publications": [
|
|
164
|
+
{
|
|
165
|
+
"name": "Scaling Microservices Without Losing Your Mind",
|
|
166
|
+
"publisher": "ACM Queue",
|
|
167
|
+
"releaseDate": "2023-03-01",
|
|
168
|
+
"url": "https://queue.acm.org/scaling-microservices",
|
|
169
|
+
"summary": "A practical guide to incremental migration from monolith to microservices based on real-world production experience."
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "Accessible Component Libraries in Practice",
|
|
173
|
+
"publisher": "Smashing Magazine",
|
|
174
|
+
"releaseDate": "2022-07-15",
|
|
175
|
+
"url": "https://smashingmagazine.com/accessible-component-libraries",
|
|
176
|
+
"summary": "How to build a React component library that is accessible by default."
|
|
177
|
+
}
|
|
178
|
+
],
|
|
179
|
+
"skills": [
|
|
180
|
+
{
|
|
181
|
+
"name": "Frontend",
|
|
182
|
+
"level": "Expert",
|
|
183
|
+
"keywords": [
|
|
184
|
+
"React",
|
|
185
|
+
"TypeScript",
|
|
186
|
+
"Next.js",
|
|
187
|
+
"Redux",
|
|
188
|
+
"Tailwind CSS",
|
|
189
|
+
"Webpack",
|
|
190
|
+
"Jest"
|
|
191
|
+
]
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"name": "Backend",
|
|
195
|
+
"level": "Advanced",
|
|
196
|
+
"keywords": [
|
|
197
|
+
"Node.js",
|
|
198
|
+
"Express",
|
|
199
|
+
"PostgreSQL",
|
|
200
|
+
"MongoDB",
|
|
201
|
+
"Redis",
|
|
202
|
+
"GraphQL",
|
|
203
|
+
"REST APIs"
|
|
204
|
+
]
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"name": "DevOps",
|
|
208
|
+
"level": "Intermediate",
|
|
209
|
+
"keywords": [
|
|
210
|
+
"Docker",
|
|
211
|
+
"Kubernetes",
|
|
212
|
+
"AWS",
|
|
213
|
+
"GitHub Actions",
|
|
214
|
+
"Terraform",
|
|
215
|
+
"Nginx"
|
|
216
|
+
]
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"languages": [
|
|
220
|
+
{
|
|
221
|
+
"language": "English",
|
|
222
|
+
"fluency": "Native speaker"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"language": "Spanish",
|
|
226
|
+
"fluency": "Professional working proficiency"
|
|
227
|
+
}
|
|
228
|
+
],
|
|
229
|
+
"interests": [
|
|
230
|
+
{
|
|
231
|
+
"name": "Open Source",
|
|
232
|
+
"keywords": ["Contributing", "Mentoring", "Community Building"]
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"name": "Technology",
|
|
236
|
+
"keywords": ["Web Performance", "Accessibility", "Developer Tools"]
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"references": [
|
|
240
|
+
{
|
|
241
|
+
"name": "John Smith, CTO at TechCorp",
|
|
242
|
+
"reference": "Jane is an exceptional engineer who consistently delivers high-quality work. She has a deep understanding of both frontend and backend technologies and is always willing to help teammates. Her contributions to our microservices architecture were instrumental in scaling our platform to millions of users."
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"name": "Sarah Johnson, Founder at StartupXYZ",
|
|
246
|
+
"reference": "Working with Jane was a pleasure. She took ownership of our entire tech stack and built a product that exceeded our expectations. Her ability to work independently and make smart technical decisions was invaluable to our early-stage startup."
|
|
247
|
+
}
|
|
248
|
+
],
|
|
249
|
+
"projects": [
|
|
250
|
+
{
|
|
251
|
+
"name": "Open Source UI Library",
|
|
252
|
+
"description": "Created and maintain a popular React component library with 5,000+ GitHub stars. Provides accessible, customizable components used by 100+ companies.",
|
|
253
|
+
"highlights": [
|
|
254
|
+
"Built 50+ production-ready components with full TypeScript support",
|
|
255
|
+
"Achieved 95% test coverage with comprehensive unit and integration tests",
|
|
256
|
+
"Published detailed documentation site with live code examples",
|
|
257
|
+
"Gained 5,000+ stars and 200+ contributors on GitHub"
|
|
258
|
+
],
|
|
259
|
+
"keywords": ["React", "TypeScript", "Storybook", "Open Source"],
|
|
260
|
+
"startDate": "2020-01-01",
|
|
261
|
+
"endDate": "2023-01-01",
|
|
262
|
+
"url": "https://github.com/janedev/ui-library",
|
|
263
|
+
"roles": ["Creator", "Maintainer"],
|
|
264
|
+
"entity": "Independent",
|
|
265
|
+
"type": "application"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "JSON Resume",
|
|
269
|
+
"description": "Core contributor to JSON Resume, an open standard for resumes. Built theme system and contributed to core specification.",
|
|
270
|
+
"highlights": [
|
|
271
|
+
"Implemented new JSX-based theme architecture",
|
|
272
|
+
"Created 5+ official themes",
|
|
273
|
+
"Improved documentation and developer experience"
|
|
274
|
+
],
|
|
275
|
+
"keywords": ["Open Source", "JavaScript", "React"],
|
|
276
|
+
"startDate": "2023-06-01",
|
|
277
|
+
"url": "https://jsonresume.org",
|
|
278
|
+
"roles": ["Contributor"],
|
|
279
|
+
"entity": "JSON Resume",
|
|
280
|
+
"type": "application"
|
|
281
|
+
}
|
|
282
|
+
],
|
|
283
|
+
"meta": {
|
|
284
|
+
"canonical": "https://github.com/jsonresume/resume-schema/blob/master/resume.json",
|
|
285
|
+
"version": "v1.0.0",
|
|
286
|
+
"lastModified": "2024-01-01T00:00:00"
|
|
287
|
+
}
|
|
288
|
+
}
|
package/index.js
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @jsonresume/sample-data
|
|
3
|
+
*
|
|
4
|
+
* Sample JSON Resume fixtures for tests, demos, and theme development.
|
|
5
|
+
*
|
|
6
|
+
* - completeResume: an every-section resume (basics + all 12 sections),
|
|
7
|
+
* the canonical fixture used by the registry theme-render QA gate.
|
|
8
|
+
* - minimalResume: a small basics + work + education + skills subset,
|
|
9
|
+
* derived from completeResume.
|
|
10
|
+
*
|
|
11
|
+
* The JSON is loaded via createRequire so the module works as plain ESM in
|
|
12
|
+
* Node without JSON import-assertion syntax.
|
|
13
|
+
*
|
|
14
|
+
* @module @jsonresume/sample-data
|
|
15
|
+
*/
|
|
16
|
+
import { createRequire } from 'node:module';
|
|
17
|
+
|
|
18
|
+
const require = createRequire(import.meta.url);
|
|
19
|
+
|
|
20
|
+
/** Every-section JSON Resume fixture. */
|
|
21
|
+
export const completeResume = require('./complete-resume.json');
|
|
22
|
+
|
|
23
|
+
/** A second, fuller sample resume kept alongside the complete fixture. */
|
|
24
|
+
export const resumeSample = require('./resume-sample.json');
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Minimal JSON Resume subset (basics + first work / education / skill),
|
|
28
|
+
* derived from completeResume so it never drifts from the canonical shape.
|
|
29
|
+
*/
|
|
30
|
+
export const minimalResume = {
|
|
31
|
+
basics: completeResume.basics,
|
|
32
|
+
work: completeResume.work?.slice(0, 1) ?? [],
|
|
33
|
+
education: completeResume.education?.slice(0, 1) ?? [],
|
|
34
|
+
skills: completeResume.skills?.slice(0, 1) ?? [],
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export default { completeResume, resumeSample, minimalResume };
|
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jsonresume/sample-data",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Sample JSON Resume fixtures: a complete every-section resume and a minimal subset",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": "./index.js",
|
|
10
|
+
"./complete-resume.json": "./complete-resume.json",
|
|
11
|
+
"./resume-sample.json": "./resume-sample.json",
|
|
12
|
+
"./package.json": "./package.json"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"index.js",
|
|
16
|
+
"complete-resume.json",
|
|
17
|
+
"resume-sample.json"
|
|
18
|
+
],
|
|
19
|
+
"keywords": [
|
|
20
|
+
"resume",
|
|
21
|
+
"cv",
|
|
22
|
+
"json-resume",
|
|
23
|
+
"fixtures",
|
|
24
|
+
"sample-data"
|
|
25
|
+
],
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/jsonresume/jsonresume.org",
|
|
29
|
+
"directory": "packages/sample-data"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://github.com/jsonresume/jsonresume.org/tree/master/packages/sample-data",
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/jsonresume/jsonresume.org/issues"
|
|
34
|
+
},
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
38
|
+
"license": "MIT"
|
|
39
|
+
}
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
{
|
|
2
|
+
"basics": {
|
|
3
|
+
"name": "Jane Developer",
|
|
4
|
+
"label": "Full Stack Software Engineer",
|
|
5
|
+
"image": "https://avatars.githubusercontent.com/u/1?v=4",
|
|
6
|
+
"email": "jane.developer@example.com",
|
|
7
|
+
"phone": "(555) 123-4567",
|
|
8
|
+
"url": "https://janedeveloper.com",
|
|
9
|
+
"summary": "Passionate software engineer with 5+ years of experience building scalable web applications. Specialized in React, Node.js, and cloud architecture. Love solving complex problems and mentoring junior developers.",
|
|
10
|
+
"location": {
|
|
11
|
+
"address": "123 Tech Street",
|
|
12
|
+
"postalCode": "94102",
|
|
13
|
+
"city": "San Francisco",
|
|
14
|
+
"countryCode": "US",
|
|
15
|
+
"region": "California"
|
|
16
|
+
},
|
|
17
|
+
"profiles": [
|
|
18
|
+
{
|
|
19
|
+
"network": "GitHub",
|
|
20
|
+
"username": "janedev",
|
|
21
|
+
"url": "https://github.com/janedev"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"network": "LinkedIn",
|
|
25
|
+
"username": "janedeveloper",
|
|
26
|
+
"url": "https://linkedin.com/in/janedeveloper"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"network": "Twitter",
|
|
30
|
+
"username": "janedev",
|
|
31
|
+
"url": "https://twitter.com/janedev"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
"work": [
|
|
36
|
+
{
|
|
37
|
+
"name": "TechCorp Inc",
|
|
38
|
+
"position": "Senior Software Engineer",
|
|
39
|
+
"url": "https://techcorp.com",
|
|
40
|
+
"startDate": "2021-03-01",
|
|
41
|
+
"summary": "Lead development of microservices architecture serving 10M+ users. Mentored team of 5 junior engineers and improved deployment pipeline reducing release time by 60%.",
|
|
42
|
+
"highlights": [
|
|
43
|
+
"Architected and implemented new microservices platform using Node.js and Kubernetes",
|
|
44
|
+
"Reduced API response time by 40% through caching and database optimization",
|
|
45
|
+
"Led migration from monolith to microservices, improving system reliability to 99.9% uptime",
|
|
46
|
+
"Implemented CI/CD pipeline using GitHub Actions, reducing deployment time from 2 hours to 15 minutes"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "StartupXYZ",
|
|
51
|
+
"position": "Full Stack Developer",
|
|
52
|
+
"url": "https://startupxyz.com",
|
|
53
|
+
"startDate": "2019-06-01",
|
|
54
|
+
"endDate": "2021-02-28",
|
|
55
|
+
"summary": "Built customer-facing web applications from scratch using React and Node.js. Worked directly with founders to define product roadmap and technical architecture.",
|
|
56
|
+
"highlights": [
|
|
57
|
+
"Developed MVP that acquired 50,000 users in first 6 months",
|
|
58
|
+
"Built real-time collaboration features using WebSockets and Redis",
|
|
59
|
+
"Implemented authentication system supporting OAuth, SSO, and 2FA",
|
|
60
|
+
"Optimized bundle size reducing initial load time by 50%"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "Digital Agency Co",
|
|
65
|
+
"position": "Junior Web Developer",
|
|
66
|
+
"url": "https://digitalagency.com",
|
|
67
|
+
"startDate": "2018-01-15",
|
|
68
|
+
"endDate": "2019-05-31",
|
|
69
|
+
"summary": "Developed responsive websites for clients using modern frontend technologies. Collaborated with designers to implement pixel-perfect interfaces.",
|
|
70
|
+
"highlights": [
|
|
71
|
+
"Built 15+ client websites using React, Vue.js, and WordPress",
|
|
72
|
+
"Implemented responsive designs achieving 100% mobile compatibility",
|
|
73
|
+
"Improved website performance scores to 95+ on Lighthouse",
|
|
74
|
+
"Trained team on modern JavaScript and component-based architecture"
|
|
75
|
+
]
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
"education": [
|
|
79
|
+
{
|
|
80
|
+
"institution": "University of California, Berkeley",
|
|
81
|
+
"url": "https://berkeley.edu",
|
|
82
|
+
"area": "Computer Science",
|
|
83
|
+
"studyType": "Bachelor of Science",
|
|
84
|
+
"startDate": "2014-09-01",
|
|
85
|
+
"endDate": "2018-05-15",
|
|
86
|
+
"score": "3.8",
|
|
87
|
+
"courses": [
|
|
88
|
+
"Data Structures and Algorithms",
|
|
89
|
+
"Database Systems",
|
|
90
|
+
"Web Development",
|
|
91
|
+
"Machine Learning"
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"skills": [
|
|
96
|
+
{
|
|
97
|
+
"name": "Frontend",
|
|
98
|
+
"level": "Expert",
|
|
99
|
+
"keywords": [
|
|
100
|
+
"React",
|
|
101
|
+
"TypeScript",
|
|
102
|
+
"Next.js",
|
|
103
|
+
"Redux",
|
|
104
|
+
"Tailwind CSS",
|
|
105
|
+
"Webpack",
|
|
106
|
+
"Jest"
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "Backend",
|
|
111
|
+
"level": "Advanced",
|
|
112
|
+
"keywords": [
|
|
113
|
+
"Node.js",
|
|
114
|
+
"Express",
|
|
115
|
+
"PostgreSQL",
|
|
116
|
+
"MongoDB",
|
|
117
|
+
"Redis",
|
|
118
|
+
"GraphQL",
|
|
119
|
+
"REST APIs"
|
|
120
|
+
]
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "DevOps",
|
|
124
|
+
"level": "Intermediate",
|
|
125
|
+
"keywords": [
|
|
126
|
+
"Docker",
|
|
127
|
+
"Kubernetes",
|
|
128
|
+
"AWS",
|
|
129
|
+
"GitHub Actions",
|
|
130
|
+
"Terraform",
|
|
131
|
+
"Nginx"
|
|
132
|
+
]
|
|
133
|
+
}
|
|
134
|
+
],
|
|
135
|
+
"languages": [
|
|
136
|
+
{
|
|
137
|
+
"language": "English",
|
|
138
|
+
"fluency": "Native speaker"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"language": "Spanish",
|
|
142
|
+
"fluency": "Professional working proficiency"
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"projects": [
|
|
146
|
+
{
|
|
147
|
+
"name": "Open Source UI Library",
|
|
148
|
+
"description": "Created and maintain a popular React component library with 5,000+ GitHub stars. Provides accessible, customizable components used by 100+ companies.",
|
|
149
|
+
"highlights": [
|
|
150
|
+
"Built 50+ production-ready components with full TypeScript support",
|
|
151
|
+
"Achieved 95% test coverage with comprehensive unit and integration tests",
|
|
152
|
+
"Published detailed documentation site with live code examples",
|
|
153
|
+
"Gained 5,000+ stars and 200+ contributors on GitHub"
|
|
154
|
+
],
|
|
155
|
+
"keywords": ["React", "TypeScript", "Storybook", "Open Source"],
|
|
156
|
+
"startDate": "2020-01-01",
|
|
157
|
+
"url": "https://github.com/janedev/ui-library"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "JSON Resume",
|
|
161
|
+
"description": "Core contributor to JSON Resume, an open standard for resumes. Built theme system and contributed to core specification.",
|
|
162
|
+
"highlights": [
|
|
163
|
+
"Implemented new JSX-based theme architecture",
|
|
164
|
+
"Created 5+ official themes",
|
|
165
|
+
"Improved documentation and developer experience"
|
|
166
|
+
],
|
|
167
|
+
"keywords": ["Open Source", "JavaScript", "React"],
|
|
168
|
+
"startDate": "2023-06-01",
|
|
169
|
+
"url": "https://jsonresume.org"
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
"awards": [
|
|
173
|
+
{
|
|
174
|
+
"title": "Top Contributor Award",
|
|
175
|
+
"date": "2023-12-01",
|
|
176
|
+
"awarder": "GitHub",
|
|
177
|
+
"summary": "Recognized as top contributor to open source projects in 2023"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"title": "Hackathon Winner",
|
|
181
|
+
"date": "2022-08-15",
|
|
182
|
+
"awarder": "TechConf 2022",
|
|
183
|
+
"summary": "First place winner for building innovative accessibility tool"
|
|
184
|
+
}
|
|
185
|
+
],
|
|
186
|
+
"interests": [
|
|
187
|
+
{
|
|
188
|
+
"name": "Open Source",
|
|
189
|
+
"keywords": ["Contributing", "Mentoring", "Community Building"]
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"name": "Technology",
|
|
193
|
+
"keywords": ["Web Performance", "Accessibility", "Developer Tools"]
|
|
194
|
+
}
|
|
195
|
+
],
|
|
196
|
+
"references": [
|
|
197
|
+
{
|
|
198
|
+
"name": "John Smith, CTO at TechCorp",
|
|
199
|
+
"reference": "Jane is an exceptional engineer who consistently delivers high-quality work. She has a deep understanding of both frontend and backend technologies and is always willing to help teammates. Her contributions to our microservices architecture were instrumental in scaling our platform to millions of users."
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"name": "Sarah Johnson, Founder at StartupXYZ",
|
|
203
|
+
"reference": "Working with Jane was a pleasure. She took ownership of our entire tech stack and built a product that exceeded our expectations. Her ability to work independently and make smart technical decisions was invaluable to our early-stage startup."
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
}
|