
Security News
High Salaries No Longer Enough to Attract Top Cybersecurity Talent
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
A Node.js library for Seattle Public Utilities web services.
Note: this library is in no way affiliated, endorsed, or otherwise acknowledged by Seattle Public Utilities.
function getCollectionDays(address, cb)
address
: (string) A Seattle house number and street.cb
: (function) A callback that will receive either an error or an array representing the next few collection days.Each collection day object has the following properties:
date
: (Date) The day's date.foodAndYardWaste
: (boolean) True if food and yard waste bins will be collected.garbage
: (boolean) True if garbage bins will be collected.recycling
: (boolean) True if recycling bins will be collected.var spu = require('spu-api');
spu.getCollectionDays('123 MAIN ST', function (err, days) {
if (err) {
return console.error(err);
}
console.log(days);
});
MIT
FAQs
A Node.js library for Seattle Public Utilities web services.
The npm package spu-api receives a total of 0 weekly downloads. As such, spu-api popularity was classified as not popular.
We found that spu-api 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
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.