@netresearch/node-magento-eqp
TypeScript icon, indicating that this package has built-in type declarations

4.0.5 • Public • Published

Welcome to node-magento-eqp 👋

Version License: MIT Build status Documentation Twitter: Netresearch

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.

Install

yarn install @netresearch/node-magento-eqp

Usage

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();

Author

👤 TheDevMinerTV tobigames200@gmail.com

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!


Readme

Keywords

none

Package Sidebar

Install

npm i @netresearch/node-magento-eqp

Weekly Downloads

20

Version

4.0.5

License

MIT

Unpacked Size

45.2 kB

Total Files

59

Last publish

Collaborators

  • gitsko
  • cybot
  • powlomat
  • netresearch.admin
  • thedevminertv