
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
le-neighbors
Advanced tools
The best way to find the nearest neighbors of any address in the US.
No external packages. Just remember to npm install before using.
Here's a quick example:
var Neighbors = require('le-neighbors');
var neighbors = new Neighbors(authID, authToken);
var address = '750 Virginia Park Street, Detroit, MI 48202';
neighbors.findNeighbors(address)
.then(function(ret) {
console.log(ret);
});
The console should log the following:
{ up: '760 Virginia Park Street',
down: '740 Virginia Park Street',
acrossUp: '759 Virginia Park Street',
acrossDown: '743 Virginia Park Street' }
Note that the default maximum number of steps to take is 20. For the houses on the same side of the street in our example, that means we're looking at 710-790 on the even side, and 711-791 on the odd side. (Steps are in numerical increments of two, since we know if we're on the even or odd side of the street.) We do that to limit the number of API calls, which is how SmartyStreets charges.
FAQs
Find the nearest neighbors of any address!
We found that le-neighbors 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.