
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.
simple-countries-list
Advanced tools
Simple package for getting all world countries and their short names.
Simple package for getting all world countries and their short names.
npm i simple-countries-list
import {countryNames, countryShortNames, countries, getCountry} from 'simple-countries-list';
// returns an array of all country names in order
console.log(await countryNames()); //["Afghanistan", "Albania"....]
// returns an array of all country short names in order
console.log(await countryShortNames()); //["AF", "AL"....]
// returns an array of all countries and their short names in order
console.log(await countries()); // [{ name: "Afghanistan", shortName: "AF" } ...]
// returns a single country/shortName object
console.log(await getCountry("Nigeria")); //{ name: "Nigeria", shortName: "NG" },
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
FAQs
Simple package for getting all world countries and their short names.
We found that simple-countries-list 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.