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 🙏

© 2024 – Pkg Stats / Ryan Hefner

medusa-payment-tosspayments

v0.1.2

Published

TossPayments payment pluging for medusa

Downloads

8

Readme

Feature

⚠️ Under Development

  • 결제위젯과 브랜드페이는 아직 지원하지 않습니다.
  • 토스페이먼츠 API 버전은 2022-11-16만 지원하고 있습니다.
  • 현재 카드 결제 방식만 지원하고 있습니다. (아래 표 참고)

| 결제 방식 | 카드 | 가상계좌 | 계좌이체 | 휴대폰 결제 | 상품권 | 해외 간편결제 | | :-------: | :--: | :------: | :------: | :---------: | :----: | :-----------: | | 지원 여부 | ✅ | 🚫 | 🚫 | 🚫 | 🚫 | 🚫 |

Prerequisites

Installation

  1. 아래 명령어를 통해 Medusa backend에 plugin을 설치해주세요.
npm install medusa-payment-tosspayments --save
  1. 아래와 같이 환경 변수를 설정해주세요.
TOSSPAYMENTS_DEBUG=true # 디버깅용 로그가 필요하지 않는 경우 false로 설정해주시면 됩니다.
TOSSPAYMENTS_KEY=<API 개발 연동 시크릿 키>
TOSSPAYMENTS_VERSION=2022-11-16 # 2024-08-22 현재 가장 최신 API 버전

[!WARNING]

TOSSPAYMENTS_KEY에는 Tosspayments Docs 에서 base64로 인코딩된 키가 필요합니다.

  1. medusa-config.js에 있는 plugins 항목에 아래와 같이 설치한 medusa-payment-tosspayments를 추가해주세요.
const plugins = [
  //...
  {
    resolve: "medusa-payment-tosspayments",
    options: {
      is_debug: process.env.TOSSPAYMENTS_DEBUG,
      tosspayments_key: process.env.TOSSPAYMENTS_KEY,
      tosspayments_version: process.env.TOSSPAYMENTS_VERSION,
    },
  },
  //...
];

Client Side

Medusa's Next.js starter storefront 에서 사용하는 기준으로 설명이 적혀있습니다.

  1. 먼저 @tosspayments/tosspayments-sdk를 설치해주세요.

  2. React Context를 생성하여 checkout 페이지에서 Tosspayments 인스턴스를 정상적으로 불러올 수 있도록 합니다.

  3. action에서 payments 결제 승인을 위한 데이터를 주고 받기 위해 업데이트를 해줄 수 있는 함수를 생성합니다. 자세한 내용은 Medusa Docs에서 확인해주세요.

  4. Tosspayments 결제창을 실행할 수 있는 버튼을 생성합니다.

  5. Admin 페이지에서 결제 수단에 tosspayments를 추가하고 버튼을 확인할 수 있습니다.

Reference