clone it and use
npm link
to link the package and usenpm link job-aggregator
to use it in your project
require the package
const {wuzzaf,bayt} = require('job-aggregator')
Wuzzaf
wuzzaf.fetchJob(wuzzafJobLink, (job) => {
console.log(job.title);
});
Bayt
bayt.fetchJob(baytJobLink, (job) => {
console.log(job.title);
});