@prom-cms/api-client
v0.17.0-main.b449f6f0fb77b9d97dd2b663433549152bed0f6b
Published
An api client for prom cms sites
Downloads
187
Readme
This is a javascript api client for your apps that use PROM CMS.
Installation
npm install @prom-cms/api-client
How to use
import { ApiClient } from "@prom-cms/api-client"
// Initialize
const client = new ApiClient({
// you can use custom axios config here
...
});
// You can now send requests
await client.auth.login({
email: "[email protected]",
password: "some_strong_password"
});