Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/arikaim/api-client-js

Arikaim CMS Api Client for nodejs
https://github.com/arikaim/api-client-js

Last synced: 6 days ago
JSON representation

Arikaim CMS Api Client for nodejs

Awesome Lists containing this project

README

        

## Arikaim CMS Api Client for Nodejs
![version: 1.0.0](https://img.shields.io/github/release/arikaim/api-client-js.svg)
![license: MIT](https://img.shields.io/badge/License-MIT-blue.svg)

This repo is part of [Arikaim CMS](http://arikaim.com) project.

### Installation

```sh

npm install @arikaim/arikaim-client

```

### Usage

```js

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

```