Skip to content

ludobonnet/careerjet-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published