# magento-node-api

> Magento node api

Latest version **1.0.2** (published 2017-12-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install magento-node-api
pnpm add magento-node-api
yarn add magento-node-api
bun add magento-node-api
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2017-12-11 |
| First published | 2017-11-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Zenfulfillment |
| Maintainers | denis |
| Keywords | magento, node, api |

## Links

- npm: https://www.npmjs.com/package/magento-node-api
- Repository: https://github.com/zenfulfillment/magento-node-api
- Homepage: https://github.com/zenfulfillment/magento-node-api#readme
- Issues: https://github.com/zenfulfillment/magento-node-api/issues
- npm.io page: https://npm.io/package/magento-node-api

## Dependencies (2)

- [xmlrpc](https://npm.io/package/xmlrpc.md) ^1.3.2
- [bluebird](https://npm.io/package/bluebird.md) ^3.5.1

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 1.0.2 (latest) — 2017-12-11
- 1.0.1 — 2017-12-11
- 1.0.0 — 2017-11-15

## README

# magento-node-api

> Magento API client for nodejs

## Usage

```js
const MagentoAPI = require('magento-node-api');

const magento = new MagentoAPI({
  host: 'your-magento-shop-url.com',
  login: 'soap-user',
  pass: 'soap-password'
});

// List orders
magento.init()
  .then(() => this.magento.sales_order.list())
  .then((orders) => console.log(orders));

// With params
const params = {updated_at: {from: new Date('2017-11-10')}};
magento.init()
  .then(() => this.magento.sales_order.list(params))
  .then((orders) => console.log(orders));
```

---
_Source: https://npm.io/package/magento-node-api · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
