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

market-kurly-search

v0.2.0

Published

Unauthenticated Market Kurly product search and detail client

Readme

market-kurly-search

마켓컬리 웹이 실제로 사용하는 비로그인 검색/상품 상세 표면을 사용해 상품 후보와 현재 가격을 조회하는 Node.js 패키지입니다.

설치

배포 후:

npm install market-kurly-search

이 저장소에서 개발할 때:

npm install

사용 원칙

  • 로그인 없이 확인 가능한 공개 웹 표면만 사용합니다.
  • 현재 가격은 discountedPrice 가 있으면 그 값을, 없으면 salesPrice 를 사용합니다.
  • 가격/품절/배송 문구는 시점에 따라 달라질 수 있으므로 조회 시각 기준 참고값으로만 답해야 합니다.
  • 장바구니/주문/주소 기반 배송 가능 여부 같은 회원/액션 기능은 범위 밖입니다.

사용 예시

const { countProducts, getProductDetail, searchProducts } = require("market-kurly-search")

async function main() {
  const searchResult = await searchProducts("우유")
  const detailResult = await getProductDetail(searchResult.items[0].productNo)
  const countResult = await countProducts("우유")

  console.log(countResult)
  console.log(searchResult.items[0])
  console.log(detailResult)
}

main().catch((error) => {
  console.error(error)
  process.exitCode = 1
})

공개 API

  • searchProducts(keyword, options?)
  • countProducts(keyword, options?)
  • getProductDetail(productNo, options?)

Live smoke snapshot

2026-04-09 기준 live smoke test 에서 아래 공개 표면이 로그인 없이 응답했습니다.

{
  "count": {
    "query": "우유",
    "count": 468
  },
  "firstSearchItem": {
    "productNo": 5063110,
    "name": "[연세우유 x 마켓컬리] 전용목장우유 900mL",
    "currentPrice": 2780,
    "isSoldOut": false,
    "goodsUrl": "https://www.kurly.com/goods/5063110"
  },
  "detail": {
    "productNo": 5063110,
    "name": "[연세우유 x 마켓컬리] 전용목장우유 900mL",
    "currentPrice": 2780,
    "deliveryTypeNames": [
      "샛별배송(내일 아침)"
    ]
  }
}