All Projects → mercadopago → Sdk Nodejs

mercadopago / Sdk Nodejs

Licence: mit
Mercado Pago's Official Node.js SDK

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Sdk Nodejs

Jd Union Sdk
京东联盟SDK,支持swoole和fpm两种模式
Stars: ✭ 108 (-5.26%)
Mutual labels:  sdk
Swift Sdk
LeanCloud Swift SDK
Stars: ✭ 110 (-3.51%)
Mutual labels:  sdk
Twain Sdk
A cross-platform protocol sdk based on TWAIN.Provide the implementation of both desktop development and dynamic web development.
Stars: ✭ 111 (-2.63%)
Mutual labels:  sdk
Iot Sdk C
device sdk for baidu IoT Core service, in c. Including MQTT client
Stars: ✭ 108 (-5.26%)
Mutual labels:  sdk
Flow Go Sdk
Tools for building Go applications on Flow 🌊
Stars: ✭ 109 (-4.39%)
Mutual labels:  sdk
Couchbase Ruby Client
Couchbase Ruby Client Library (Official)
Stars: ✭ 110 (-3.51%)
Mutual labels:  sdk
Python Scaleway
🐍 Python SDK to query Scaleway APIs.
Stars: ✭ 107 (-6.14%)
Mutual labels:  sdk
Ios Pdk
Pinterest iOS SDK
Stars: ✭ 114 (+0%)
Mutual labels:  sdk
Qcloud Iot Sdk Embedded C
SDK for connecting to Tencent Cloud IoT from a device using embedded C.
Stars: ✭ 109 (-4.39%)
Mutual labels:  sdk
Hydro Scaffold Dex
A Decentralized Exchange Scaffold - launch a DEX in minutes
Stars: ✭ 112 (-1.75%)
Mutual labels:  sdk
Docusign Node Client
The Official DocuSign Node.js Client Library used to interact with the eSign REST API. Send, sign, and approve documents using this client.
Stars: ✭ 108 (-5.26%)
Mutual labels:  sdk
Ali Oss
Aliyun OSS(open storage service) JavaScript SDK for the browser and Node.js
Stars: ✭ 1,579 (+1285.09%)
Mutual labels:  sdk
Dualsense Windows
Windows API for the PS5 DualSense controller
Stars: ✭ 111 (-2.63%)
Mutual labels:  sdk
Web3sdk
java sdk for FISCO BCOS
Stars: ✭ 108 (-5.26%)
Mutual labels:  sdk
Iextrading4j
IEX Cloud open source API wrapper
Stars: ✭ 112 (-1.75%)
Mutual labels:  sdk
App Examples
Miro Apps Examples
Stars: ✭ 108 (-5.26%)
Mutual labels:  sdk
Botframework Emulator
A desktop application that allows users to locally test and debug chat bots built with the Bot Framework SDK.
Stars: ✭ 1,532 (+1243.86%)
Mutual labels:  sdk
Applicationinsights Python
Application Insights SDK for Python
Stars: ✭ 114 (+0%)
Mutual labels:  sdk
Commerce.js
Open source, JS eCommerce SDK for building headless, Jamstack applications. Build custom storefronts, carts, and checkouts in any frontend framework, platform, or device. Integrates with Stripe, Square, PayPal, Paymill and Razorpay with support for 135+ currencies.
Stars: ✭ 112 (-1.75%)
Mutual labels:  sdk
Wwnetworkhelper
AFN层级更高的网络请求API
Stars: ✭ 111 (-2.63%)
Mutual labels:  sdk

Mercado Pago SDK for NodeJS

NPM Version Downloads License

This library provides developers with a simple set of bindings to help you integrate Mercado Pago API to a website and start receiving payments.

💡 Requirements

The SDK Supports Node.js from version v0 to the latest (v7).

📲 Installation

First time using Mercado Pago? Create your Mercado Pago account, if you don’t have one already.

  1. Install NodeJS SDK for MercadoPago running in command line:
$ npm install --save mercadopago
  1. Copy the access_token in the credentials section of the page and replace YOUR_ACCESS_TOKEN with it.

That's it! Mercado Pago SDK has been successfully installed.

🌟 Getting Started

Simple usage looks like:

var mercadopago = require('mercadopago');
mercadopago.configure({
    access_token: 'YOUR_ACCESS_TOKEN'
});

var preference = {
  items: [
    {
      title: 'Test',
      quantity: 1,
      currency_id: 'ARS',
      unit_price: 10.5
    }
  ]
};

mercadopago.preferences.create(preference)

📚 Documentation

Visit our Dev Site for further information regarding:

Check our official code reference to explore all available functionalities.

❤️ Support

If you require technical support, please contact our support team at developers.mercadopago.com

🏻 License

MIT license. Copyright (c) 2021 - Mercado Pago / Mercado Libre 
For more information, see the LICENSE file.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].