jse-jobs-scraper
v1.9.0
Published
This package will get all jobs in coding role from indeed, linkedin, glassdoor, internshala and many more
Downloads
146
Maintainers
Readme
What is this
This package will get all jobs in coding role from indeed, linkedin, glassdoor, internshala and many more
How to use it?
- Install this package on your project by typing
yarn add jse-scrape-jobs
ornpm install jse-scrape-jobs
; - Add this code to your project:
const { scrapeAllJobs } = require('jse-scrape-jobs')
orimport { scrapeAllJobs } from 'scrapeAllJobs'
; - And then write
scrapeAllJobs( + searchQueryForTheJobsURL + ).then(res => console.log(res))
// For Example:
scrapeAllJobs("https://www.indeed.com/jobs?q=Front+end+engineer&sc=0kf%3Ajt%28internship%29%3B").then(res => console.log(res));
And done you have successfully used this package
Contributing
If you want to contribute to this project you can follow this guidelines
- Fork the repo
- Write
yarn install
ornpm install
- Make some changes
- Make new branch for example fix-typo(branch-name) and commit it and push your changes
- Make new PR
And also please if you found any issues to this package feel free to create new issue
Many Thanks