Stackoverflow jobs wrapper purely written in Node.js
npm install stackoverflow-jobsStackoverflow Jobs
=============


Stackoverflow Jobs rss wrapper purely written in Node.js
Wrapper can be downloaded from npm:
npm install stackoverflow-jobs --save
Once installed, its easy to use it:
``javascript`
var stackoverflowJobs = require('stackoverflow-jobs');
`javascript
stackoverflowJobs.searchTerm('node').then(function(result){
result.jobs; // array with Jobs.
result.total; // Number of results
}).catch(function(error){
});
`
javascript
stackoverflowJobs.search({allowsremote : true, offersrelocation: true, location: "USA" }).then(function(result){
result.jobs; // array with Jobs.
result.total; // Number of results
}).catch(function(error){ });
`Jobs Object are like e.g:
`javascript
{
id: 'an string id of object',
link: 'link to the job',
category: [ 'an string array of categories'],
title: 'Title job',
description: 'HTML description of job',
pubDate: 'Tue, 08 Dec 2015 22:20:20 Z',//an date Object
location:'location as string'
}
``