1import { ApifyClient } from 'apify-client';
2
3
4
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9
10const input = {
11 "resumeUrl": "https://writing.colostate.edu/guides/documents/resume/functionalSample.pdf",
12 "resumeText": `John Smith
13john.smith@email.com | linkedin.com/in/johnsmith | (555) 123-4567
14
15SUMMARY
16Software Engineer with 5+ years of experience building scalable web applications using Python, React, and AWS. Passionate about clean code, system design, and mentoring junior developers.
17
18EXPERIENCE
19Senior Software Engineer | TechCorp Inc. | 2021 – Present
20• Architected microservices platform serving 2M+ daily requests, reducing latency by 40%
21• Led migration from monolith to Docker/Kubernetes, improving deployment frequency by 300%
22• Mentored team of 4 junior engineers through code reviews and pair programming
23
24Software Engineer | StartupXYZ | 2019 – 2021
25• Built REST APIs using Python/Django handling 500K requests/day
26• Implemented CI/CD pipeline with Jenkins reducing release cycles from 2 weeks to 2 days
27• Developed React dashboard for real-time analytics used by 50+ enterprise clients
28
29EDUCATION
30B.S. Computer Science | State University | 2019
31
32SKILLS
33Python, JavaScript, TypeScript, React, Django, Node.js, PostgreSQL, MongoDB, Docker, Kubernetes, AWS, Git, CI/CD, REST API, GraphQL, Agile/Scrum
34
35PROJECTS
36• Open-source CLI tool for API testing (500+ GitHub stars)
37• Real-time chat application using WebSockets and Redis
38
39CERTIFICATIONS
40• AWS Solutions Architect Associate
41• Certified Kubernetes Administrator (CKA)`,
42 "targetRole": "Software Engineer",
43 "customKeywords": "fastapi, redis, celery, websockets, postgresql, terraform, github actions, system design, distributed systems"
44};
45
46
47const run = await client.actor("moving_beacon-owner1/my-actor-61").call(input);
48
49
50console.log('Results from dataset');
51console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
52const { items } = await client.dataset(run.defaultDatasetId).listItems();
53items.forEach((item) => {
54 console.dir(item);
55});
56
57