Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
node-glassdoor
Advanced tools
Node.js module for interacting with Glassdoor's API v1.1
( powered by )
npm install --save node-glassdoor
//init
var Glassdoor = require('node-glassdoor').initGlassdoor({
partnerId: xxxxx,
partnerKey: "xxxxxx"
});
//Return the first employer information from list of results
//
//Return a employer object or empty object
//
//Result Example: https://gist.github.com/macctown/3ba27cda74db26174571fb092eeedc3e
Glassdoor.findOneCompany('google',
{
state:"CA",
country:"US"
})
.then(function (data) {
console.log(data);
})
.catch(function (err) {
console.error(err);
});
//Return all employers information that match the keyword
//
//note I: the specific location information (state, city, country)
// only affect the job info inside of each employer info
//
//note II: the original API return 10 employers in each page if there are more than 10
// but here we concat employers in every page and return an array contains all of results
//
//Return a employer object array or empty array
//
//Result Example: https://gist.github.com/macctown/8707312193de85d2d4373945cfc345c8
Glassdoor.findAllCompanies('google',
{
state:"CA"
})
.then(function (data) {
console.log(JSON.stringify(data));
})
.catch(function (err) {
console.error(err);
})
ID="xxxxx" KEY="xxxxxx" npm test
FAQs
Node.js module for interacting with Glassdoor's API v1.1
The npm package node-glassdoor receives a total of 0 weekly downloads. As such, node-glassdoor popularity was classified as not popular.
We found that node-glassdoor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.