0.17.0-main.17ba11b565cff133a05861f58e47fec23633c1d7 • Published 8 months ago

@prom-cms/api-client v0.17.0-main.17ba11b565cff133a05861f58e47fec23633c1d7

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

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@example.com",
  password: "some_strong_password"
});