resume-copilot-lib-js
Version:
A JavaScript library to interact with the Resume Copilot API, allowing job search integration into applications.
52 lines (40 loc) • 1.82 kB
Markdown
ResumeCopilotJS is a JavaScript library designed to interact with the Resume Copilot API, allowing developers to integrate job search functionality into their applications.
For detailed API documentation, visit:
[](https://api.resumecopilot.net/swagger/index.html)
Resume Copilot is your one-stop solution for crafting the perfect resume. It is available as a plugin in the ChatGPT Plus version, helping users streamline their resume-building process. With Resume Copilot, you can:
- Effortlessly upload and edit resumes
- Make precise improvements and enhancements
- Choose from a diverse range of professional templates
- Navigate and implement suggested changes with ease
To learn more, visit:
[](https://resumecopilot.net/)
Resume Copilot is also available as a ChatGPT plugin to enhance your resume-writing experience. You can access it here:
[](https://chatgpt.com/g/g-EcIzZRYVx-resume-copilot)
To install ResumeCopilotJS via npm, use the following command:
```sh
npm install resume-copilot-js
```
Here’s a basic example of how to use the library to perform a job search:
```javascript
const { JobSearchHelper, JobSearchRequest } = require('resume-copilot-js');
const request = {
title: "developer",
size: 10
};
JobSearchHelper.searchJobsAsync(request).then(results => {
results.jobs.forEach(job => {
console.log(`Job: ${job.name} at ${job.companyName}`);
});
});
```
We welcome contributions! Feel free to open issues or submit pull requests to improve the library.
This project is licensed under the MIT License.