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

myfirstpackage-payments

v0.2.2

Published

<p align="middle" > <img src="https://techcourse-storage.s3.ap-northeast-2.amazonaws.com/0fefce79602043a9b3281ee1dd8f4be6" width="400"> </p> <h2 align="middle">페이먼츠</h2> <p align="middle">React 모바일 페이먼츠 애플리케이션</p> </p>

Readme

🚀 Getting Started

안녕하세요! 부족한 패키지를 사용해 주셔서 고맙습니다😃

간단한 사용법은,

npm i myfirstpackage-payments

or
yarn add myfirstpackage-payments

or
pnpm add myfirstpackage-payments

사용하고자 하는 컴포넌트에서 스타일과 함께 컴포넌트를 import 하여 주시면 됩니다.

import 'myfirstpackage-payments/styles'
import { Payments } from 'myfirstpackage-payments'


<CardInfoProvider>
  <App>
</CardInfoProvider>

...
isPaymentApp && (
  <Payments />
)
...

스타일의 경우, width 사이즈를 100%로 잡아두었습니다. 상위에서 사이즈를 잡아서 사용하시는걸 생각하였어요. 다른 레이아웃을 고민중이시라면 공유 부탁드려요😊

외부에서는 hook을 통하여 값을 확인할 수 있습니다.

const  {
    cardInfo,   // 카드를 등록할 때, 카드 정보값 컨텍스트
    updateCardInfo, // 카드 등록을 위한 업데이트 컨텍스트
    cardList, // 등록된 카드리스트 컨텍스트
    updateCardList, // 카드 리스트 업데이트 컨텍스트
  } = useCardInfo()