/node-sdk

NodeJS SDK for the Sellix Developers API (developers.sellix.io). Quickly get started and create products, payments and more using NodeJS.

Primary LanguageJavaScriptMIT LicenseMIT

Sellix NodeJS SDK

node-sdk-tag npm downloads

Introduction

Sellix public API for developers to access merchant resources

Requirements

  • NodeJS

Installation

Install the package through NPM.

npm i @sellix/node-sdk

Usage

// pass <MERCHANT_NAME> only if you need to be authenticated as an additional store
const sellix = require("@sellix/node-sdk")("<YOUR_API_KEY>", "<MERCHANT_NAME>")

void (async () => {
  try {
    const products = await sellix.products.list()
  } catch (e) {
    console.log(e)
  }
})()

Documentation

Sellix Developers API