Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

yoomoney-sdk

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yoomoney-sdk

YooMoney typed SDK

  • 1.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
44
increased by4.76%
Maintainers
1
Weekly downloads
 
Created
Source

YooMoney NodeJS SDK

YooMoney SDK

Почему именно эта библиотека?

  1. Есть поддержка TypeScript
  2. Покрывает большую часть https://yoomoney.ru/docs/wallet
  3. Документация прямо в коде
  4. Всего 2 зависимости: node-fetch и redirect-form-builder (для генерации html форм)
  5. Есть API генерации frontend форм перенаправления для Авторизации и Оплаты

Работа с API

Простой пример

import { YMApi } from "yoomoney-sdk";

const token = "..."; // Где-то здесь берём oauth токен кошелька

const api = new YMApi(token);

api.accountInfo().then(console.log);

Который в консоль выведет

{
  account: '41xxxxxxxxxx848',
  balance: 34.18,
  currency: '643',
  account_type: 'personal',
  identified: true,
  account_status: 'identified',
  balance_details: { total: 34.18, available: 34.18 }
}

Небольшое НО

Если API возвращает ошибку (то-есть поле error в ответе), то библиотека кидает ошибку YMApiError, которая содержит поля:

  • code - Значение поля error в ответе
  • response - Ответ полностью

Интересует приём и отправка P2P платежей по РФ на NodeJS?

У нас есть точно такое-же типизированное SDK для QIWI 👉 github.com/AlexXanderGrib/node-qiwi-sdk

Keywords

FAQs

Package last updated on 21 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc