šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Book a DemoInstallSign in
Socket

@netresearch/node-magento-eqp

Package Overview
Dependencies
Maintainers
0
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@netresearch/node-magento-eqp

Simple API wrapper around the Magento Marketplace EQP API

4.0.7
latest
Source
npm
Version published
Maintainers
0
Created
Source

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

  • Github: @TheDevMinerTV

šŸ¤ 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!

FAQs

Package last updated on 08 Oct 2024

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