UNPKG
indeed-jobs-api
Version:
latest (0.1.1)
0.1.1
node.js library for indeed jobs search api
github.com/paulrays/indeed-jobs
paulrays/indeed-jobs
indeed-jobs-api
/
index.js
12 lines
(9 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
var
IndeedJobsApi
=
require
(
'./lib/indeed-jobs.js'
);
var
Api
=
function
(
) {
this
.
getInstance
=
function
(
publisherKey
) {
return
new
IndeedJobsApi
(publisherKey); }; };
module
.
exports
=
new
Api
();