
Security News
Frontier AI Is Now Critical Infrastructure
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
@robinpath/bigcommerce
Advanced tools
BigCommerce module for RobinPath.
The bigcommerce module lets you:
All functions are callable directly from RobinPath scripts with a simple, consistent API.
npm install @robinpath/bigcommerce
1. Set up credentials
bigcommerce.setCredentials "your-credentials"
2. listProducts
bigcommerce.listProducts
| Function | Description |
|---|---|
bigcommerce.setCredentials | Configure bigcommerce credentials. |
bigcommerce.listProducts | listProducts |
bigcommerce.getProduct | getProduct |
bigcommerce.createProduct | createProduct |
bigcommerce.updateProduct | updateProduct |
bigcommerce.deleteProduct | deleteProduct |
bigcommerce.listOrders | listOrders |
bigcommerce.getOrder | getOrder |
bigcommerce.updateOrder | updateOrder |
bigcommerce.listCustomers | listCustomers |
bigcommerce.getCustomer | getCustomer |
bigcommerce.createCustomer | createCustomer |
bigcommerce.updateCustomer | updateCustomer |
bigcommerce.listCategories | listCategories |
bigcommerce.createCategory | createCategory |
bigcommerce.listBrands | listBrands |
bigcommerce.createBrand | createBrand |
bigcommerce.getOrderProducts | getOrderProducts |
bigcommerce.getStoreInfo | getStoreInfo |
bigcommerce.listChannels | listChannels |
bigcommerce.getOrderShipments | getOrderShipments |
bigcommerce.listProducts
bigcommerce.getProduct
bigcommerce.createProduct
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
`);
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
@robinpath/shopify — Shopify module for complementary functionality@robinpath/woocommerce — WooCommerce module for complementary functionality@robinpath/square — Square module for complementary functionality@robinpath/json — JSON module for complementary functionalityMIT
FAQs
BigCommerce REST API — products, orders, customers, categories, brands, inventory, carts, and webhooks. Uses the encrypted credential vault for the per-store access token and store hash.
The npm package @robinpath/bigcommerce receives a total of 37 weekly downloads. As such, @robinpath/bigcommerce popularity was classified as not popular.
We found that @robinpath/bigcommerce demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

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.

Security News
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.