🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@robinpath/bigcommerce

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@robinpath/bigcommerce

> BigCommerce module for RobinPath.

npmnpm
Version
0.1.1
Version published
Weekly downloads
53
51.43%
Maintainers
4
Weekly downloads
 
Created
Source

@robinpath/bigcommerce

BigCommerce module for RobinPath.

Category Functions Auth License

Why use this module?

The bigcommerce module lets you:

  • listProducts
  • getProduct
  • createProduct
  • updateProduct
  • deleteProduct

All functions are callable directly from RobinPath scripts with a simple, consistent API.

Installation

npm install @robinpath/bigcommerce

Quick Start

1. Set up credentials

bigcommerce.setCredentials "your-credentials"

2. listProducts

bigcommerce.listProducts

Available Functions

FunctionDescription
bigcommerce.setCredentialsConfigure bigcommerce credentials.
bigcommerce.listProductslistProducts
bigcommerce.getProductgetProduct
bigcommerce.createProductcreateProduct
bigcommerce.updateProductupdateProduct
bigcommerce.deleteProductdeleteProduct
bigcommerce.listOrderslistOrders
bigcommerce.getOrdergetOrder
bigcommerce.updateOrderupdateOrder
bigcommerce.listCustomerslistCustomers
bigcommerce.getCustomergetCustomer
bigcommerce.createCustomercreateCustomer
bigcommerce.updateCustomerupdateCustomer
bigcommerce.listCategorieslistCategories
bigcommerce.createCategorycreateCategory
bigcommerce.listBrandslistBrands
bigcommerce.createBrandcreateBrand
bigcommerce.getOrderProductsgetOrderProducts
bigcommerce.getStoreInfogetStoreInfo
bigcommerce.listChannelslistChannels
bigcommerce.getOrderShipmentsgetOrderShipments

Examples

listProducts

bigcommerce.listProducts

getProduct

bigcommerce.getProduct

createProduct

bigcommerce.createProduct

Integration with RobinPath

import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/bigcommerce";

const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);

const result = await rp.executeScript(`
  bigcommerce.setCredentials "your-credentials"
  bigcommerce.listProducts
`);

Full API Reference

See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.

License

MIT

FAQs

Package last updated on 20 Feb 2026

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