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.
covid19-us-wa
Advanced tools
"covid19-us-wa" is a library that retrieves current published COVID-19 data from the Washington State Department of Health website. Data is starting March 11, 2020. Data source is updated daily by WADOH and history is incorporated within few hours of the published report.
Data is retrieved daily from https://www.doh.wa.gov/emergencies/coronavirus
Historic visualization of the dataset is on the projects page: https://winfinit.github.io/covid19-us-wa/
Returns latest data from the states site
Returns historic data, including latest update.
Returns abbreviated historic data by removing county key.
let Covid19USWA = require("covid19-us-wa").Covid19USWA;
let covid19USWA = new Covid19USWA();
covid19USWA.getCurrentData().then(data => {
console.log("data", data);
/*
Sample output:
{
"county":{
"Clark":{
"positive":1,
"deaths":0
},
"Grant":{
"positive":1,
"deaths":1
}
},
"total":{
"positive":366,
"deaths":29,
"new_positive":33,
"new_deaths":1
},
"total_tests":{
"positive":366,
"negative":3037,
"new_positive":11,
"new_negative":44
},
"last_updated":"2020-03-23T07:00:00.000Z"
}
*/
});
covid19USWA.getHistoryData().then(data => {
console.log("data", data);
/*
Sample output:
{
"03/11/2020":{
"county":{
"Clark":{
"positive":1,
"deaths":0
},
"Grant":{
"positive":1,
"deaths":0
}
},
"total":{
"positive":366,
"deaths":29,
"new_positive":33,
"new_deaths":1
},
"total_tests":{
"positive":366,
"negative":3037,
"new_positive":11,
"new_negative":44
},
"last_updated":"2020-03-23T07:00:00.000Z"
}
}
*/
});
covid19USWA.getShortHistoryData().then(data => {
console.log("data", data);
/*
Sample output:
{
"2020-03-23": {
"total": {
"positive": 2221,
"deaths": 110,
"new_deaths": 15,
"new_positive": 225
},
"total_tests": {
"negative": 31712,
"positive": 2221,
"new_positive": 225,
"new_negative": 2833
}
}
}
*/
});
import {
Covid19USWA,
ICovid19USWACurrent,
ICovid19USWAHistory,
ICovid19USWAShortHistory
} from 'covid19-us';
let covid19USWA = new Covid19USWA();
covid19USWA.getCurrentData().then((data: ICovid19USWACurrent) => {
console.log(data);
});
covid19USWA.getHistoryData().then((data: ICovid19USWAHistory) => {
console.log(data);
});
covid19USWA.getShortHistoryData().then((data: ICovid19USWAShortHistory) => {
console.log(data);
});
FAQs
covid19 data for United States, Washington
The npm package covid19-us-wa receives a total of 1 weekly downloads. As such, covid19-us-wa popularity was classified as not popular.
We found that covid19-us-wa 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.