3.1.4 • Published 2 years ago
@kamiya4047/exptech-api-wrapper v3.1.4
ExpTech API Wrapper
Installation
npm install @kamiya4047/exptech-api-wrapperUsage
API documentation can be found here.
You can use default exported instance
// with CJS require
const ExpTech = require("@kamiya4047/exptech-api-wrapper").default;
await ExpTech.getReportList();
// with ESM import
import ExpTech from "@kamiya4047/exptech-api-wrapper";
await ExpTech.getReportList();or create an instance with ExpTechApi class
// with CJS require
const { ExpTechApi } = require("@kamiya4047/exptech-api-wrapper");
const api = new ExpTechApi(/* YOUR API KEY HERE */);
// with ESM import
import { ExpTechApi } from "@kamiya4047/exptech-api-wrapper";
const api = new ExpTechApi(/* YOUR API KEY HERE */);Example
getReportList
import ExpTech from "@kamiya4047/exptech-api-wrapper";
(async () => {
console.log(await ExpTech.getReportList(10));
})();3.1.3
2 years ago
3.1.2
2 years ago
3.1.1
2 years ago
3.1.0
2 years ago
3.1.4
2 years ago
3.0.1
2 years ago
3.0.0
2 years ago
2.0.1
3 years ago
2.0.0
3 years ago
1.2.0
3 years ago
1.1.1
3 years ago
1.1.0
3 years ago
1.2.1
3 years ago
1.1.2
3 years ago
1.0.4
4 years ago
1.0.3
4 years ago
1.0.2
4 years ago
1.0.1
4 years ago
1.0.0
4 years ago