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

parking-lot-search

v0.1.3

Published

Official Data.go.kr based public parking lot lookup for Korean location queries

Downloads

389

Readme

parking-lot-search

Korean parking-lot lookup backed first by the official Data.go.kr 전국주차장정보표준데이터 Open API.

Usage principles

  • Do not infer or track the user's location automatically.
  • Ask for the current location first, then use a neighborhood/station/landmark or latitude, longitude pair.
  • The default result set is public (공영) parking lots only.
  • The package resolves text locations through Kakao Map place search, then searches the official parking dataset near the resolved coordinates.
  • Live occupancy and reservation are not provided by the official standard data.

Official surfaces

  • Data.go.kr standard dataset: https://www.data.go.kr/data/15012896/standard.do
  • Data.go.kr Open API docs: https://www.data.go.kr/data/15012896/openapi.do
  • Open API endpoint: https://api.data.go.kr/openapi/tn_pubr_prkplce_info_api
  • Kakao Map mobile search: https://m.map.kakao.com/actions/searchView?q=<query>
  • Kakao Map place panel JSON: https://place-api.map.kakao.com/places/panel3/<confirmId>

Proxy-first usage

By default, the package calls the shared k-skill proxy:

const { searchNearbyParkingLotsByLocationQuery } = require("parking-lot-search");

async function main() {
  const result = await searchNearbyParkingLotsByLocationQuery("광화문", {
    limit: 3,
    radius: 1500
  });

  console.log(result.anchor);
  console.log(result.items);
}

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

Set KSKILL_PROXY_BASE_URL or pass proxyBaseUrl to use a local proxy.

Direct Data.go.kr usage

For direct official API calls, pass apiKey or set DATA_GO_KR_API_KEY and useDirectApi: true.

const result = await searchNearbyParkingLotsByLocationQuery("광화문", {
  apiKey: process.env.DATA_GO_KR_API_KEY,
  limit: 5,
  radius: 2000
});

Public API

  • parseCoordinateQuery(locationQuery)
  • normalizeParkingLotRows(payload, origin, options)
  • buildOfficialParkingLotApiUrl(options)
  • searchNearbyParkingLotsByCoordinates(options)
  • searchNearbyParkingLotsByLocationQuery(locationQuery, options)

Modu Parking status

Issue #135 mentioned connecting 모두의주차장 if possible. This package does not scrape or call an unofficial Modu Parking surface. Add it later only if there is an approved, stable, and legally usable API contract.