Hello, World!

// My name is Alex Johnson, and this is my resume.

1
const candidate = {
2
about: {
3
name: 'Alex Johnson',
4
title: 'Senior Software Engineer',
5
},
6
contact: {
9
},
10
/**
11
* Passionate full-stack developer with 5+ years of experience building scalable web applications. Specialized in React, Node.js, and cloud technologies. Proven track record of leading development teams and delivering high-impact projects.
12
*/
13
getExperience() {
14
return [
15
{
16
company: 'TechCorp Inc.',
17
role: 'Senior Software Engineer',
18
duration: '2022-01 - Present',
19
description: /*
20
Lead development of microservices architecture serving 1M+ users. Implemented CI/CD pipelines reducing deployment time by 60%. Mentored 3 junior developers and conducted code reviews.
21
*/
22
},
23
{
24
company: 'StartupXYZ',
25
role: 'Full Stack Developer',
26
duration: '2020-03 - 2021-12',
27
description: /*
28
Built and maintained React/Node.js applications. Collaborated with design team to implement responsive UI components. Optimized database queries improving performance by 40%.
29
*/
30
},
31
{
32
company: 'Digital Solutions',
33
role: 'Frontend Developer',
34
duration: '2019-06 - 2020-02',
35
description: /*
36
Developed user interfaces using React and TypeScript. Worked with REST APIs and implemented state management with Redux. Participated in agile development process.
37
*/
38
},
39
]
40
},
41
skills: [
42
'JavaScript/TypeScript', // 95% proficiency
43
'React & Next.js', // 90% proficiency
44
'Node.js & Express', // 85% proficiency
45
'Python', // 80% proficiency
46
'PostgreSQL & MongoDB', // 85% proficiency
47
'AWS & Docker', // 75% proficiency
48
'Git & CI/CD', // 90% proficiency
49
'REST APIs & GraphQL', // 85% proficiency
50
],
51
getEducation() {
52
return [
53
{
54
degree: 'Bachelor of Science in Computer Science',
55
institution: 'University of California, Berkeley',
56
},
57
{
58
degree: 'Machine Learning Specialization',
59
institution: 'Stanford Online',
60
},
61
]
62
},
63
// Portfolio Projects
64
portfolio: [
68
],
69
// Certifications
70
getCustomSection() {
71
return `
72
AWS Certified Solutions Architect
73
Google Cloud Professional Developer
74
Certified Scrum Master (CSM)
75
`
76
},
77
// References available upon request
78
references: [
79
'{Sarah Chen - Engineering Manager at TechCorp Inc.}'
80
'{Michael Rodriguez - CTO at StartupXYZ}'
81
'{Dr. Emily Watson - Professor, UC Berkeley}'
82
],
83
};