Skip to content

Latest commit

 

History

History
35 lines (20 loc) · 618 Bytes

README.md

File metadata and controls

35 lines (20 loc) · 618 Bytes

Arikaim CMS Api Client for Nodejs

version: 1.0.0 license: MIT

This repo is part of Arikaim CMS project.

Installation

npm install @arikaim/arikaim-client

Usage

import { ArikaimClient } from '@arikaim/arikaim-client';


var client = new ArikaimClient(apiEndpoint,apiKey);

client.request(method,url,{
    // request data  key: value
}).then(function (response) {
    // response.data;  
}).catch(function (error) {
   // error
});