careerjet

0.3.1 • Public • Published

CareerJet API

A small library to query Careerjet Jobboard, built and maintained by Ludo Bonnet

Installation

  npm install careerjet

Usage

var careerjet = require('careerjet');

const careerjetAPI = new careerjet('en_GB', 'youraffidkey');

careerjetAPI
    .location('London')
    .keywords('developer')
    .query(
        function (results) {
            // do something with the success results
            console.log(results);
        },
        function (error) {
            // do something with the error results
            console.error(error);
      });

Tests

  npm test

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Made with ♥ by Ludo Bonnet

Readme

Keywords

none

Package Sidebar

Install

npm i careerjet

Weekly Downloads

3

Version

0.3.1

License

none

Unpacked Size

7.89 kB

Total Files

6

Last publish

Collaborators

  • ludobonnet