node-magento-eqp
/
4.0.0
node-magento-eqp 4.0.0
Install from the command line:
Learn more about npm packages
$ npm install @netresearch/node-magento-eqp@4.0.0
Install via package.json:
"@netresearch/node-magento-eqp": "4.0.0"
About this version
Simple API wrapper around the Magento Marketplace EQP API
The primary focus of this package is, to provide a simple API wrapper and typings (unfinished) around the Magento Marketplace EQP API.
yarn install @netresearch/node-magento-eqp
Usage in TypeScript (with ES Modules)
import * as MagentoEQP from '@netresearch/node-magento-eqp';
const eqp = new MagentoEQP.EQP();
async function main() {
await eqp.authenticate('APP_ID', 'APP_SECRET');
const packages = await eqp.getPackages();
// Do something with the packages
}
main();
Usage in JavaScript (with CommonJS)
const MagentoEQP = require('@netresearch/node-magento-eqp');
const eqp = new MagentoEQP.EQP();
async function main() {
await eqp.authenticate('APP_ID', 'APP_SECRET');
const packages = await eqp.getPackages();
// Do something with the packages
}
main();
π€ TheDevMinerTV [email protected]
- Github: @TheDevMinerTV
Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.
Give a βοΈ if this project helped you!