npm.io
1.0.6 • Published 1 year ago

@arikaim/client

Licence
MIT
Version
1.0.6
Deps
1
Size
8 kB
Vulns
0
Weekly
0
Stars
1

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
});