country names by Alpha-2 country code in multiple languages
npm install node-country-listbash
npm install node-country-list
`example
`javascript
const Countries = require('node-country-list');// Countries.get(alpha2Code: string, langCode: string): string
Countries.get('us', 'de'); // Vereinigte Staaten
Countries.get('FR', 'ZH'); // 法国
Countries.get('us', 'zh-hans'); // 美国
Countries.get('us', 'zh-hant'); // 美國
Countries.get('something', 'unknown'); // undefined
`please note
* library is using lazy loading for language data to safe on startup and overall memory footprint
* it is nodejs library - fs and path` are required