Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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 3 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.