0.11.0 • Published 2 years ago

@prom-cms/api-client v0.11.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years 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"
});