简介
WHO(World Health Organization)是世界卫生组织的缩写,who-core是一个旨在提供 WHO 数据的 npm 包。它包含了许多有用的数据,例如各国的疫情数据等。在本文中,我们将学习如何使用 npm 包 who-core,并且将会深入了解这个包。
安装
安装 who-core 包可以使用以下命令:
npm install who-core
使用方法
使用之前,我们需要先引入 who-core 包:
const who = require('who-core');
who-core 包提供了许多方法,例如:
getAllCountries()
获取所有国家的数据。
who.getAllCountries() .then(data => console.log(data)) .catch(err => console.log(err));
getCountryByName(countryName)
根据国家名获取指定国家的数据。
who.getCountryByName('China') .then(data => console.log(data)) .catch(err => console.log(err));
getCountryByCode(countryCode)
根据国家代码获取指定国家的数据。
who.getCountryByCode('CN') .then(data => console.log(data)) .catch(err => console.log(err));
who-core 支持 Promise,当成功时返回相关数据,当失败时返回错误信息。
示例代码
使用 who-core 包获取中国的疫情数据。
const who = require('who-core'); who.getCountryByName('China') .then(data => { console.log(`中国的确诊病例数为:${data['totalCases']},死亡人数为:${data['totalDeaths']}`); }) .catch(err => console.log(err));
总结
who-core 是一个非常有用的 npm 包,它提供了许多有关疫情的数据。我们学习了安装和使用 who-core 包,并深入了解了其内部的实现。如果你正在开发与疫情有关的应用程序,who-core 包将是一个不错的选择。
来源:JavaScript中文网 ,转载请注明来源 https://www.javascriptcn.com/post/600671088dd3466f61ffdf4a