Node Magento Eqp
Description
Simple API wrapper around the Magento Marketplace EQP API
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
@netresearch/node-magento-eqp
[](https://www.npmjs.com/package/@netresearch/node-magento-eqp) [](https://github.com/netresearch/node-magento-eqp/actions/workflows/lint.and.build.yml) [](https://github.com/netresearch/node-magento-eqp/actions/workflows/codeql.yml) [](https://github.com/netresearch/node-magento-eqp/blob/main/LICENSE) [](https://nodejs.org) [](https://www.typescriptlang.org/) [](https://netresearch.github.io/node-magento-eqp)
TypeScript API wrapper for the [Adobe Commerce Marketplace EQP API](https://developer.adobe.com/commerce/marketplace/guides/eqp/v1/).
Installation
yarn add @netresearch/node-magento-eqp
or
npm install @netresearch/node-magento-eqp
Usage
TypeScript (ES Modules)
import { EQP } from '@netresearch/node-magento-eqp';
const eqp = new EQP({
appId: 'YOUR_APP_ID',
appSecret: 'YOUR_APP_SECRET',
environment: 'sandbox' // or 'production' (default)
});
const packages = await eqp.packageService.getPackages();
JavaScript (CommonJS)
const { EQP } = require('@netresearch/node-magento-eqp');
(async () => {
const eqp = new EQP({
appId: 'YOUR_APP_ID',
appSecret: 'YOUR_APP_SECRET'
});
const packages = await eqp.packageService.getPackages()
Related Skills
Awesome Go
A curated list of awesome Go frameworks, libraries and software
Development next.js
| The React Framework | 138360 | 1503 | 1 |
Development sharing-skills
skill for guidance.
Development root-cause-tracing
Use when errors occur deep in execution and you need to trace back to find the original trigger.
Development Template Skill
Minimal skeleton for a new skill project structure.
Development Third-party Notices
THE FOLLOWING SETS FORTH ATTRIBUTION NOTICES FOR THIRD PARTY SOFTWARE THAT MAY BE CONTAINED IN PORTIONS OF THI
Development