1.0.4 • Published 2 years ago

@mtraders/admin-api v1.0.4

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

Installation

npm install @mtraders/admin-api --save

Usage

Here is a simple code for obtaining a list of posts.

import { AdminApiClient, HaloRestAPIClient } from '@mtraders/admin-api'

// http request tool for halo rest api.
const haloRestApiClient = new HaloRestAPIClient({
  baseUrl: process.env.HALO_BASE_URL,
})

// create adminApiClient by haloRestApiCLient.
const haloAdminClient = new AdminApiClient(haloRestApiClient)

// obtaining a list of articles.
haloAdminClient.post.list().then((res) => {
  console.log(res)
})

You can also view the complete implementation of the halo-admin project: @mtraders/halo-admin.

License

MIT license

1.0.4

2 years ago

1.0.3

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago