1.0.3 • Published 2 years ago

hupun-open-api-nodejs-sdk v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

hupun-open-api-nodejs-sdk

对接万里牛 ERP 开放接口的 NodeJS SDK。

安装

npm i hupun-open-api-nodejs-sdk --save

使用

import { HupunClient } from "hupun-open-api-nodejs-sdk";

const client = new HupunClient({
  appkey: "xxxxx",
  appsecret: "xxxxxx",
});

client
  .request("erp/base/storage/query", {
    page_no: 1,
    page_size: 1,
  })
  .then((res) => {
    console.log(res.data);
  })
  .catch((e) => {
    if (e.response) {
      console.error(e.response.data);
    } else {
      console.error(e.message);
    }
  });
1.0.2

2 years ago

1.0.3

2 years ago

1.0.1

3 years ago

1.0.0

3 years ago