Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
country-iso
Advanced tools
🗺 Get ISO 3166-1 alpha-3 country code for geographic coordinates.
Click on the map for a live preview.
$ npm install --save country-iso
You can query any (lat,lng)
pair on the earth. It also works for territorial waters and disputed countries.
const countryIso = require('country-iso');
// Query a point in Italy.
countryIso.get(41.9028, 12.4964);
// => ['ITA']
// Query a disputed country.
countryIso.get(24, -14);
// => ['ESH', 'MAR']
// Query a point somewhere in Atlantic Ocean.
countryIso.get(40, -40);
// => []
The package internally uses @geo-maps/countries-maritime map with 10m resolution.
The accuracy of the map has been tested with 23785 cities.
Array.<string>
Searches for every country which contains the point (lat, lng).
Returns: Array.<string>
- Array of ISO 3166 alpha-3 country code for the geographic
coordinates.
Param | Type | Description |
---|---|---|
lat | number | The latitude of the point. |
lng | number | The longitude of the point. |
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
Get ISO 3166-1 alpha-3 country code for geographic coordinates.
The npm package country-iso receives a total of 3,541 weekly downloads. As such, country-iso popularity was classified as popular.
We found that country-iso demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.