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

okcert

v0.0.7

Published

KCB 휴대폰 본인확인 서비스 OKCert3 NodeJS 모듈

Readme

KCB OKCert3 서비스 NodeJS 모듈

코리아크레딧뷰로(주) 오케이네임(이하 "서비스제공업체") 휴대폰 본인확인 서비스 NodeJS 모듈입니다.

OKCert3 Java 1.5 서비스 모듈을 기반으로 구성했습니다.

본 모듈은 서비스제공업체에서 공식적으로 제공하는 모듈이 아니며, 해당 모듈을 사용하여 발생하는 문제는 모두 사용자에게 있음을 알려드립니다.

설치하기

$ npm install okcert
$ yarn add okcert

okcertyarn berry (PnP - Plug'n'Play)를 지원하고 있습니다.

설정하기

new OKCert({
  // ...
  module: __dirname + '/모듈_파일_경로/모듈_파일.jar',
  license: __dirname + '/라이센스_파일_경로/라이센스_파일.dat',
  // ...
});

본 모듈은 서비스제공업체에서 공식적으로 제공하는 모듈이 아니기에 Java 모듈 파일(jar)의 경로를 module에 입력해주셔야 합니다.

서비스제공업체 담당자에게 전달받은 모듈 파일라이센스 파일의 경로를 입력해주세요.

예제

import OKCert from 'okcert';

const instance = new OKCert({
  target: 'PROD',
  module: __dirname + '/모듈_파일_경로/모듈_파일.jar',
  license: __dirname + '/라이센스_파일_경로/라이센스_파일.dat',
  cp_cd: 'P00000000001',
  site_name: 'example',
  site_url: 'example.com',
});

instance.requestPhoneAuth({
  name: '홍길동',
  birthday: '01000000000',
  sex_cd: 'M',
  ntv_frnr_cd: 'L',
  tel_com_cd: '01',
  tel_no: '01000000000',
  rqst_caus_cd: '00',
  sms_resend_yn: 'N',
});