
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
inhabited
is a tiny library for Node.JS to determine whether a location may
be inhabited or not. It is used in http://forecast.io/
to quickly short-circuit geocoding queries (which are expensive) for locations
far from human habitation. (In such cases, Forecast labels those locations
"Middle of Nowhere." Go ahead and try it: open up Forecast via the link above,
and then click and drag the location marker on the globe into the middle of the
ocean.)
The inhabited
module is a single function, which takes a latitude, longitude,
and callback function as arguments. That callback function will be called with
two arguments: an optional error and a boolean. That boolean will be "true" if
the location specified may be inhabited, and will be "false" if the location is
definitely not inhabited.
var inhabited = require("inhabited");
// <40.7144, -74.0060> happens to be in New York City.
console.log(inhabited(40.7144, -74.0060)); // prints "true"
// <-29.5065, -136.5820> happens to be in the middle of the South Pacific.
console.log(inhabited(-29.5065, -136.5820)); // prints "false"
To the extend possible by law, The Dark Sky Company, LLC has waived all copyright and related or neighboring rights to this library.
FAQs
quickly determine if a lat/lon may be inhabited or not
The npm package inhabited receives a total of 1 weekly downloads. As such, inhabited popularity was classified as not popular.
We found that inhabited demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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 data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.