Skip to content

단 몇줄의 코드로 다양한 쇼핑 플랫폼에서 결제 내역을 긁어오자!

License

Notifications You must be signed in to change notification settings

code-yeongyu/TrackPurchase

Repository files navigation

credit card emoji

TrackPurchase

NPM version codecov codecov

단 몇줄의 코드로 다양한 쇼핑 플랫폼에서 결제 내역을 긁어오자!

🛒 지원 플랫폼 목록

  • 지원 플랫폼은 계속해서 추가될 예정입니다.

Naver Pay

📦 설치

yarn add trackpurchase

🚀 사용

네이버 페이

import { NaverApp } from "trackpurchase";
const browser = await puppeteer.launch();
const page = await browser.newPage();

const module = NaverApp.NaverModuleFactory.create(page);
const crawlService = new NaverApp.NaverService(module);

await crawlService.normalLogin(id, password, 100);
const history = await crawlService.getHistory();
browser.close();

console.log(history);