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

@unlimiting/pathfinder

v0.2.1

Published

한국 길찾기 CLI (자동차 + 대중교통)

Downloads

263

Readme

pathfinder

카카오 모빌리티 내비게이션 API를 CLI에서 호출하는 도구입니다.

설치

# 글로벌 설치
npm install -g pathfinder-cli

# 또는 소스에서 빌드
git clone https://github.com/Variel/pathfinder.git
cd pathfinder
npm install
npm run build

시작하기

# API 키 등록 (카카오 디벨로퍼스에서 REST API 키 발급)
pathfinder login

# 상태 확인
pathfinder status

사용법

자동차 길찾기

pathfinder directions -o 127.1086228,37.4012191 -d 127.10820,37.40262
pathfinder dir -o 127.1086228,37.4012191,name=출발지 -d 127.10820,37.40262,name=도착지 --alternatives

다중 경유지 길찾기 (최대 30개)

pathfinder waypoints -o 127.1086228,37.4012191 -d 127.10820,37.40262 \
  -w "127.110,37.402|127.112,37.403|127.114,37.404"

미래 운행정보 길찾기

pathfinder future -o 127.1086228,37.4012191 -d 127.10820,37.40262 -t 202603170900

공통 옵션

| 옵션 | 설명 | |------|------| | -p, --priority | 경로 우선순위: RECOMMEND, TIME, DISTANCE | | --avoid | 회피: ferries\|toll\|motorway\|schoolzone\|uturn | | --alternatives | 대안 경로 포함 | | --car-fuel | 연료: GASOLINE, DIESEL, LPG | | --car-hipass | 하이패스 장착 | | --summary | 요약만 반환 | | --json | JSON 원본 출력 |

좌표 형식

경도,위도[,name=이름][,angle=각도]

  • 경도(x): 127.1086228
  • 위도(y): 37.4012191
  • 이름(선택): name=서울역
  • 각도(선택, 출발지만): angle=90

API 키 발급

카카오 디벨로퍼스에서 앱을 생성하고 REST API 키를 발급받으세요.