npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

covid_selfcheck

v1.4.1

Published

https//github.com/Heavyrisem/Auto_selftest

Readme

COVID Auto_Check

NPM info

이 라이브러리는 더 이상 업데이트 되지 않을 예정입니다.

코로나19 자가진단을 이상없음으로 처리해주는 라이브러리입니다.

개인 학습용으로 만들어졌습니다.

사용법

const SelfTest = require('covid_selfcheck');

SelfTest('학생이름', '생년월일', '소속 시', '학교이름', '학교 유형(초중고)').then(result => {
    console.log(result); // 결과값
});
const SelfTest = require('covid_selfcheck');

SelfTest('학생이름', '생년월일', '학교 코드').then(result => {
    console.log(result); // 결과값
});

학교 이름은 줄여서 작성할수 있습니다. 예) XX중학교 -> XX중

시 이름을 줄여서 작성할수 있습니다. 에) 제주특별자치시 -> 제주

결과값 설명

  • { registerDtm: 'Sep 7, 2020 5:40:11 PM', inveYmd: '20200907' }

처리 성공

모든 오류는 err 객체에 담겨 돌아옵니다.

  • { err: REGION_NOT_FOUND }

입력된 소속 시 이름이 없습니다.

  • { err: SCHOOL_CODE_NOT_FOUND }

입력된 학교 코드가 발견되지 않았습니다.

  • { err: SCHOOL_LEVEL_NOT_FOUND }

입력된 학급 이름이 없습니다.

  • { err: SCHOOL_NOT_FOUND }

입력된 정보로 학교를 찾을수 없습니다.

  • { err: ALREADY_DIAGNOSED }

이미 오늘 자가진단을 했습니다.

  • { err: 503_SERVER_ERROR }

API 서버가 응답하지 않습니다.

이 아래의 오류들은 처리되지 못한 오류입니다.

  • { err: UNKNOWN_ERROR }

  • { err: message }

경고!

해당 라이브러리를 사용하여 생기는 문제는 사용자에게 있음을 알립니다.

사용 전 신중하게 생각을 해주세요