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

@connextable/popbill

v1.0.1

Published

Popbill API SDK for TypeScript. see www.popbill.com

Readme

@connextable/popbill

Popbill API를 TypeScript에서 사용하기 위한 modern SDK입니다.

신규 프로젝트에서는 이 패키지를 기본 선택지로 사용합니다. createPopbillClient로 클라이언트를 만들고, 객체 기반 입력과 타입이 지정된 응답으로 API를 호출합니다.

요구사항

  • Node.js 20+
  • ESM 호환 TypeScript 도구

설치

npm install @connextable/popbill

빠른 시작

import { createPopbillClient } from '@connextable/popbill'

const client = createPopbillClient({
  linkId: process.env.POPBILL_LINK_ID!,
  secretKey: process.env.POPBILL_SECRET_KEY!,
  userId: process.env.POPBILL_USER_ID!,
  isTest: true,
})

const expiration = await client.services.taxInvoice.getTaxCertificateExpirationDate({
  businessNumber: process.env.POPBILL_CORP_NUM!,
})

console.log(expiration)

클라이언트 설정

필수 필드:

  • linkId
  • secretKey
  • userId

주요 옵션:

  • isTest: Popbill 테스트 환경 사용 여부입니다. 기본값은 false입니다.
  • useLocalTime: 인증 시 로컬 UTC 시간을 사용할지 결정합니다. 기본값은 true입니다.
  • requestTimeoutMs: 요청 제한시간(ms)입니다. 기본값은 180000입니다.
  • acceptEncoding: 요청 Accept-Encoding 헤더입니다. 기본값은 gzip입니다.
  • acceptLanguage: 요청 Accept-Language 헤더입니다.
  • onError: SDK 에러 콜백입니다.

서비스

현재 공개 서비스 그룹:

  • client.services.taxInvoice: 전자세금계산서 등록, 발행, 검색, 문서 URL, 첨부파일, 국세청 전송, 인증서, 설정 관련 메서드를 제공합니다.

관련 문서