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-juso

v1.0.1

Published

JusoLink API SDK for TypeScript

Readme

@connextable/popbill-juso

주소링크(JusoLink) 주소검색 API를 TypeScript에서 사용하기 위한 SDK입니다.

요구사항

  • Node.js 20+

설치

npm install @connextable/popbill-juso

빠른 시작

import { createJusoLinkClient } from '@connextable/popbill-juso'

const client = createJusoLinkClient({
  linkId: process.env.JUSO_LINK_ID!,
  secretKey: process.env.JUSO_SECRET_KEY!,
  accessId: process.env.JUSO_ACCESS_ID!,
})

const result = await client.services.juso.searchAddresses({
  searchKeyword: '서울 강남구 테헤란로',
  pageSize: 5,
})

console.log(result.addresses)

클라이언트 설정

필수 필드:

  • linkId
  • secretKey
  • accessId

주요 옵션:

  • apiBaseUrl: 주소링크 API 기본 URL입니다. 기본값은 https://jusolink.linkhub.co.kr입니다.
  • authBaseUrl: Linkhub 인증 API 기본 URL입니다. 기본값은 https://auth.linkhub.co.kr입니다.
  • forwardedIpAddress: 토큰 발급 시 사용할 제한 IP 값입니다.
  • useLocalTime: 인증 시 로컬 UTC 시간을 사용할지 결정합니다. 기본값은 true입니다.
  • requestTimeoutMilliseconds: 요청 제한시간(ms)입니다. 기본값은 180000입니다.
  • acceptLanguage: 요청 Accept-Language 헤더입니다.
  • onError: SDK 에러 콜백입니다.

서비스

  • client.services.juso.searchAddresses(input): 검색어로 주소를 조회하고 페이지 정보, 시도별 검색 건수, 정규화된 주소 목록을 반환합니다.

관련 문서