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.
zipcode-city-distance
Advanced tools
Simple zipcode/city distance calculator and all information you need about cities and zipcodes, including coordinates, states etc.
Simple Zip Code - City distance calculator and all information you need about cities and zipcodes, including coordinates, states etc.
npm i zipcode-city-distance
const zipCodeData = require('zipcode-city-distance');
//zipCodeDistance(zipcode1, zipcode2, unit(optional))
//valid units: 'M' for miles, 'K' for kilometers, 'N' for nautical miles
let zipCodeDistance = zipCodeData.zipCodeDistance('98006', '33014','M');
2710.6371929140273
without state parameters:
//cityDistance(zipcode1, zipcode2, unit(optional), state1(optional), state2(optional))
//units: 'M' for miles, 'K' for kilometers, 'N' for nautical miles
//state1:state for city1 abbreviation e.g. 'FL','fl' etc.
//state2:state for city2 abbreviation e.g. 'FL','fl' etc.
let cityDistance = zipCodeData.cityDistance('blue ball', 'hazardville', 'M');
[ { place1: { city: 'Blue Ball', state: 'PA', zipcode: '17519' },
place2: { city: 'Hazardville', state: 'CT', zipcode: '06082' },
distance: 191.89020635690355 },
{ place1: { city: 'Blue Ball', state: 'PA', zipcode: '17557' },
place2: { city: 'Hazardville', state: 'CT', zipcode: '06082' },
distance: 195.19234777104015 }
]
with state parameters:
//cityDistance(city1, city2, unit(optional), state1(optional), state2(optional))
//city1: name of the first city
//city2: name of the second city
//units: 'M' for miles, 'K' for kilometers, 'N' for nautical miles
//state1:state for city1 abbreviation e.g. 'FL','fl' etc.
//state2:state for city2 abbreviation e.g. 'FL','fl' etc.
let cityDistance = zipCodeData.cityDistance('blue ball', 'hazardville', 'M', 'PA', 'CT');
[ { place1: { city: 'Blue Ball', state: 'PA', zipcode: '17519' },
place2: { city: 'Hazardville', state: 'CT', zipcode: '06082' },
distance: 191.89020635690355 },
{ place1: { city: 'Blue Ball', state: 'PA', zipcode: '17557' },
place2: { city: 'Hazardville', state: 'CT', zipcode: '06082' },
distance: 195.19234777104015 }
]
//getInfo(type, query)
//type: "zipcode" to get zip code information or "city" to get city information
//query: zipcode or city name
let zipInfo = zipCodeData.getInfo('zipcode', '98006');
{
"message": "completed your request",
"data": {
"state": {
"code": "53",
"short": "WA"
},
"location": {
"lat": 47.557627,
"lon": -122.151005,
"aLand": 27737341,
"aWater": 1886298,
"aLandSQMI": 10.709,
"aWaterSQMI": 0.728
},
"places": {
"Bellevue": {
"placeCode": "5305210",
"placeCode2": "02409821",
"location": {
"lat": 47.597837,
"lon": -122.15648
}
},
"Newcastle": {
"placeCode": "5348645",
"placeCode2": "02411243",
"location": {
"lat": 47.531664,
"lon": -122.165566
}
}
}
}
}
//getInfo(type, query)
//type: "zipcode" to get zip code information or "city" to get city information
//query: zipcode or city name
let zipInfo = zipCodeData.getInfo('city', 'lakemont');
{
"message": "completed your request",
"data": [
{
"lat": 40.465434,
"lon": -78.391752,
"state": {
"code": "42",
"short": "PA"
},
"zipCode": "16602"
},
{
"lat": 40.465434,
"lon": -78.391752,
"state": {
"code": "42",
"short": "PA"
},
"zipCode": "16648"
}
]
}
FAQs
Simple zipcode/city distance calculator and all information you need about cities and zipcodes, including coordinates, states etc.
The npm package zipcode-city-distance receives a total of 448 weekly downloads. As such, zipcode-city-distance popularity was classified as not popular.
We found that zipcode-city-distance 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.