0.0.3 • Published 3 years ago

hh-node v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

HeadHunter API for NodeJs

How it works

const hh = new HeadHunter({
    publicId: 'public-id-from-hh',
    privateKey: 'private-key-from-hh'
}).getClient();

const dto: SearchVacancyDto = {
    text: 'Frontend-разработчик',
    salary: 140000
};
const data = hh.vacancies(dto);
const vacancies = await data.getData();